fork download
  1. #include <array>
  2.  
  3. typedef std::array<std::array<int, 3>, 5> array2d;
  4.  
  5. int main()
  6. {
  7. array2d arr = {2,7,5, 3,1,1, 2,1,-7, 0,2,1, 1,6,8};
  8. }
  9.  
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty