Best collection of C programs
Tuesday, January 4, 2011
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 ();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment