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

Tuesday, August 28, 2007

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 ();

}