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