fork(1) download
  1. struct L1 {
  2. struct L2 {
  3. int i[4];
  4. } l2[3];
  5. };
  6.  
  7. L1::L2 l2 = { {1,2,3,4} };
  8.  
  9. L1::L2 l2_a[] = { {{1,2,3}}, {{1,2}}, {{1,2,3,4}}};
  10.  
  11. L1 l1 = {
  12. {{{1,2,3}}, {{1,2}}, {{1,2,3,4}}}
  13. };
  14.  
  15. L1 l1_a0 = {};
  16. L1 l1_a1 = {{{{0}}}};
  17.  
  18. L1 l1_a[] = {
  19. {{{{1,2,3}}, {{1,2}}, {{1,2,3,4}}}},
  20. {{{{1,2,3}}, {{1,2}}, {{1,2,3,4}}}}
  21. }; // ... sweet potatoes!
  22.  
  23.  
  24. int main()
  25. {
  26. return 0;
  27. }
Success #stdin #stdout 0s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty