Guest User

Untitled

a guest
Oct 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. main (void)
  3. {
  4. int i, j;
  5. for (i=0; i<3; ++i)
  6. for (j=0; j<10; ++j)
  7. printf("%d %d\n", i, j);
  8. getchar();
  9. }
Add Comment
Please, Sign In to add comment