Best collection of C programs
Tuesday, January 4, 2011
SERIES 20 TO 1
WAP TO PRINT SERIES FROM 20 TO 1
#include
void main ()
{
int a;
clrscr ();
a=20;
while (a>=1)
{
printf ("\n%d",a);
a--;
}
getch ();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment