RAJIBRAJU

8

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