fork(2) download
  1. #include <iostream>
  2. struct S {
  3. unsigned long b1:63;
  4. unsigned int :0;
  5. char d;
  6. };
  7. int main()
  8. {
  9. std::cout << sizeof(S) << '\n';
  10. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
12