87./*Write
a program to print this Series*/
#include<stdio.h>
#include<conio.h>
main()
{
int i=1;
clrscr();
do
{
printf("%d\t",i);
i=i+2;
}
while(i<100);
getch();
}
OUTPUT
No comments:
Post a Comment