Guest User

Untitled

a guest
Dec 17th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int n, i;
  5.  
  6. printf("Enter an integer: ");
  7. scanf("%d",&n);
  8.  
  9. for(i=1; i<=10; ++i)
  10. {
  11. printf("%d * %d = %d \n", n, i, n*i);
  12. }
  13.  
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment