fork download
  1. #include <iostream>
  2. #include <memory>
  3. using namespace std;
  4.  
  5. struct A
  6. {
  7. size_t a;
  8. size_t b;
  9. };
  10.  
  11. int main() {
  12. cout << sizeof(size_t) << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
4