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