fork download
  1. #include <iostream>
  2. using namespace std;
  3. class A
  4. {
  5. int a;
  6. public:
  7.  
  8. void fun()
  9. {
  10. int x,y,z;
  11. }
  12. };
  13. int main() {
  14.  
  15. cout << sizeof(A);
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5344KB
stdin
Standard input is empty
stdout
4