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

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

}



Labels