fork(1) download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4.  
  5. int main() {
  6. std::vector<std::vector<std::vector<int>>> myVec =
  7. {
  8. {
  9. { 0, 1 },
  10. { 2, 3}
  11. },
  12. {
  13. { 4, 5 },
  14. {6, 7 }
  15. }
  16. };
  17.  
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 3272KB
stdin
Standard input is empty
stdout
Standard output is empty