Saturday, March 6, 2010

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