fork download
  1. #include <iostream>
  2. #include <array>
  3. #include <vector>
  4. using namespace std;
  5.  
  6. struct data_row{
  7. array<uint8_t, 64> a, b, c;
  8. };
  9.  
  10. using data_table = vector<data_row>;
  11.  
  12. int main() {
  13. data_table table(5);
  14. return 0;
  15. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty