Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int arr[3][3][3] = {
- {
- {1, 1,1},
- {1, 1, 2},
- {1, 1, 3}
- },
- {
- {2, 1, 1},
- {2, 1, 2},
- {2, 1, 3}
- },
- {
- {3, 1, 1},
- {3, 1, 2},
- {3, 1, 3}
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement