fork download
  1. #include <cstdio>
  2.  
  3. struct hoge {
  4. int foo,bar;
  5. };
  6.  
  7. int main() {
  8. struct hoge hoge[10];
  9. printf("%u\n",(unsigned int)sizeof(hoge));
  10. printf("%u\n",(unsigned int)sizeof(hoge[0]));
  11. return 0;
  12. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
80
8