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