Guest User

Untitled

a guest
Oct 19th, 2017
72
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. int i, j;
  4. for (i=0; i<3; ++i) {
  5. for (j=0; j<10; ++j) {
  6. printf("%d %d\n", i, j);
  7. }
  8. }
  9. getchar();
  10. }
Add Comment
Please, Sign In to add comment