fork download
  1. #include <stdio.h>
  2.  
  3. int main(int ac, char* av[]) {
  4. struct hoge {
  5. int a[10];
  6. hoge() : a() {}
  7. };
  8. hoge h;
  9. for (int i = 0; i < 10; ++i) printf("%d,", h.a[i]);
  10. printf("\n");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
0,0,0,0,0,0,0,0,0,0,