Best collection of C programs
Showing posts with label
WAP TO PRINT EVEN and ODD NUMBERS FROM 20 TO 1
.
Show all posts
Showing posts with label
WAP TO PRINT EVEN and ODD NUMBERS FROM 20 TO 1
.
Show all posts
Tuesday, January 4, 2011
ODD SERIES 20 TO 1
WAP TO PRINT EVEN & ODD NUMBERS FROM 20 TO 1
void main ()
{
int a;
clrscr ();
a=20;
while (a>=1)
{
if (a%2==0)
printf ("%d\t",a);
else
printf ("%d\n",a);
a--;
}
getch ();
}
Older Posts
Home
Subscribe to:
Posts (Atom)