fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. typedef struct
  5. {
  6. int Foo;
  7. char Bar[100];
  8. } FooBar;
  9.  
  10. int main() {
  11.  
  12. cout << sizeof(FooBar);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
104