..
www.engineerscur.blogspot.com: C language program to print table of 5
Root
Tutorials
C-language Examples
Social
Facebook
Website Tutorials
Contact/About
www.engineerscur.blogspot.com
C language program to print table of 5
#include<stdio.h>
#include<conio.h>
void main()
{ int i,j;
clrscr():
for(i=1;i<=10;i++)
{
printf(“5*%d=%d”,i,5*i);
}
}
Newer Post
Older Post
Home