Showing posts with label WAP to print Odd numbers from 1 to 20. Show all posts
Showing posts with label WAP to print Odd numbers from 1 to 20. Show all posts

ODD SERIES

WAP to print Odd numbers from 1 to 20

void main ()

{

int a;

clrscr ();

a=1;

while (a<=20)

{

if (a%2==1)

printf ("\n%d",a);

a++;

}

getch ();

}


Labels