fork download
  1. struct X
  2. {
  3. int a;
  4. X();
  5. };
  6.  
  7. X::X()
  8. {
  9. a = 0;
  10. this->a = 1;
  11. X::a = 2;
  12. this->X::a = 3;
  13. }
  14.  
  15. int main()
  16. {
  17. X x;
  18. // your code goes here
  19. return 0;
  20. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty