fork download
  1. #include <iostream>
  2.  
  3. struct whatever
  4. {
  5. int y;
  6. char x;
  7. };
  8.  
  9. int main()
  10. {
  11. std::cout << sizeof(whatever) << '\n';
  12. }
  13.  
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
8