Showing posts with label WAP to print table of 5. Show all posts
Showing posts with label WAP to print table of 5. Show all posts

Tuesday, August 28, 2007

TABLE OF 5

WAP to print table of 5

void main ()

{

int a,tab;

clrscr ();

a=1,tab=0;

while (a<=10)

{

tab=5*a;

a++;

printf ("%d\n",tab);

}

getch ();

}