fork(1) download
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. class demo
  5. {
  6. private: char info;
  7.  
  8. public:
  9. demo()
  10. {
  11. info='a';
  12. }
  13.  
  14. void print_info()
  15. {
  16. cout<<info;
  17. }
  18. };
  19.  
  20. int main()
  21. {
  22.  
  23. demo * ob = new demo();
  24. char* ptr= reinterpret_cast<char*>(ob);
  25.  
  26. *ptr='b';
  27.  
  28. ob->print_info();
  29. delete ob;
  30. return 0;
  31. }
  32.  
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
b