//In the Name of ALLAH //This program prints "Multiplication Table" on the screen. //The code contains a for loop inside another for loop. #include #include void main() { int i,j,x; i=1; j=1; // *** The Main Body *** // clrscr(); printf("This program prints the \"Multiplication Table\" on the screen.\nPress any key to continue:\n\n"); getch(); for (i=1;i<=10;i++) { for (j=1;j<=10;j++) { x=i*j; printf("%d\t",x); } } printf("\n"); getch(); }