Advertisement
Nattack

Untitled

Oct 14th, 2017
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. for (int i = 0; i < 10; i++){
  2.     printf("outer loop");
  3.     for (int j = 0; j < 10; j++){
  4.         printf(" inner loop");
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement