Miti059

8.Multiplication table

Jun 7th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2. main()
  3. {
  4.     int i,n,s;
  5.     printf("Enter number:");
  6.     scanf("%d",&n);
  7.     for(i=1;i<=10;i++)
  8.     printf("%d x %d =%d\n",n,i,n*i);
  9.  
  10.  
  11.  
  12.  
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment