fork download
  1. #include <iostream>
  2. using namespace std;
  3. struct sct {
  4. int t[2];
  5. };
  6. struct str {
  7. sct t[2];
  8. };
  9. int main() {
  10. str t[2] = { {0, 2, 4, 6}, {1, 3, 5, 7} };
  11. cout << t[1].t[0].t[1] << t[0].t[1].t[0];
  12. return 0;
  13. }
  14.  
  15.  
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
34