Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<stdio.h> #include<conio.h> void main() { int i,j,n; printf("Enter a number:-"); scanf("%d",&n); for(i=1;i<=10;i++) { for(j=1;j<=n;j++) { printf("%4d",i*j); } printf("\n"); } getch(); }
0 Comments