fork(1) download
  1. #include <vector>
  2. #include <array>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. std::vector<std::array<unsigned int, 4>> arrayVector;
  8.  
  9. arrayVector.push_back({ 0, 1, 2, 3 });
  10. return 0;
  11. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
Standard output is empty