fork download
  1. struct hogehoge {
  2. int aaa;
  3. int MapData[5][5];
  4. int bbb;
  5. };
  6.  
  7.  
  8. int main()
  9. {
  10. struct hogehoge hoge = {
  11. 1111,
  12. {
  13. {1,1,1,1,1},
  14. {1,0,0,0,1},
  15. {1,0,0,0,1},
  16. {1,0,0,0,1},
  17. {1,1,1,1,1}
  18. },
  19. 22222
  20. };
  21.  
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 1716KB
stdin
Standard input is empty
stdout
Standard output is empty