//Write a program to print multiplication of 1 to 10 #include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); printf("Multiplication table of 1 to 10:\n\n"); for(i=1;i<=10;i++) { for(j=1;j<=10;j++) printf("%d ",i*j); printf("\n"); } getch(); }
Comments
Post a Comment