Guest User

Untitled

a guest
Oct 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 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. }
  9. getchar();
  10. }
Add Comment
Please, Sign In to add comment