#include<stdio.h>
#include<conio.h>
int main()
{
int i,j;
printf("PRINTING MULTIPLICATION TABLE FROM 1 TO 10");
for(j=1;j<=10;j++)
{
for(i=1;i<=10;i++)
{
printf("%d ",i*j);
}
printf("\n");
}
}
Coder'S LibrarY Share anything that I learn.
#include<stdio.h>
#include<conio.h>
int main()
{
int i,j;
printf("PRINTING MULTIPLICATION TABLE FROM 1 TO 10");
for(j=1;j<=10;j++)
{
for(i=1;i<=10;i++)
{
printf("%d ",i*j);
}
printf("\n");
}
}
Comments
Post a Comment
Thank you