fork(2) download
  1. #include <iostream>
  2.  
  3. int main(int argc, char **argv)
  4. {
  5. struct {
  6. unsigned int value:24;
  7. } your_variable;
  8.  
  9. std::cout << sizeof(your_variable);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
4