fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class A {};
  5.  
  6. int main() {
  7. A a;
  8. A *b = &a;
  9.  
  10. b = NULL;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5532KB
stdin
Standard input is empty
stdout
Standard output is empty