Write a program to print the table of 10

//this is a program to print the table of 10
#include<stdio.h>
#include<conio.h>
void main()
{
int i;

printf("\n\nDisplaying the table of 10 ");

for(i=1;i<=10;i++)
{
printf("\n%d X %d = %d",10,i,10*i);
}
getch();
}

Previous
Next Post »