fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int j,k;
  6. printf("Enter the number :");
  7. scanf("%d",&j);
  8. for(int k=1;k<=12;k++)
  9. printf("%d*%d=%d",j,k,j*k);
  10.  
  11. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Enter the number :21944*1=2194421944*2=4388821944*3=6583221944*4=8777621944*5=10972021944*6=13166421944*7=15360821944*8=17555221944*9=19749621944*10=21944021944*11=24138421944*12=263328