Advertisement
10rch

Untitled

Feb 16th, 2017
131
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.  
  3. int main()
  4. {
  5. int a,b,c;
  6. for (a=1;a<11;a++) {
  7.  for(b=1;b<11;b++)
  8.  {
  9.      c=a*b;
  10.      printf("%d x %d = %d \n",a,b,c);
  11.  }
  12.  printf("\n");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement