fork download
  1. #include <array>
  2. #include <iostream>
  3. #include <vector>
  4. using namespace std;
  5.  
  6. int main() {
  7. vector<array<int, 5>> foo;
  8.  
  9. foo.push_back({0, 1, 2, 3, 4});
  10. foo.resize(2);
  11. foo.push_back({5, 6, 7, 8, 9});
  12.  
  13. for(auto& i : foo) {
  14. for(auto& j : i) {
  15. cout << j << ' ';
  16. }
  17. cout << endl;
  18. }
  19. return 0;
  20. }
Success #stdin #stdout 0s 3416KB
stdin
Standard input is empty
stdout
0 1 2 3 4 
0 0 0 0 0 
5 6 7 8 9