fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Foo {char a; int b; char c;};
  5. struct Bar {char a; char b; int c;};
  6.  
  7.  
  8. int main() {
  9. cout << sizeof(Foo) << endl;
  10. cout << sizeof(Bar) << endl;
  11. }
Success #stdin #stdout 0s 4520KB
stdin
Standard input is empty
stdout
12
8