fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct test
  5. {
  6. static uint32_t testVar;
  7. uint32_t otherVar;
  8. };
  9.  
  10. int main()
  11. {
  12. cout <<sizeof(test)<< endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 4372KB
stdin
Standard input is empty
stdout
4