Write a program to print the table from 1-10

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

printf("\n\nPrinting the Tables From 1-10 ");

for(i=1;i<=10;i++)
{
printf("\nPrinting the Table of %d :-",i);

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

}
getch();
}

Previous
Next Post »