fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Yoba
  5. {
  6. public:
  7. Yoba()
  8. {
  9.  
  10. }
  11.  
  12. Yoba * method()
  13. {
  14. Yoba * ref = new Yoba();
  15. return ref;
  16. }
  17.  
  18. void show()
  19. {
  20. std::cout << "123";
  21. }
  22.  
  23. };
  24.  
  25. int main() {
  26. // your code goes here
  27. Yoba y;
  28. Yoba * r = y.method();
  29. r->show();
  30. delete r;
  31. return 0;
  32. }
Success #stdin #stdout 0s 3228KB
stdin
Standard input is empty
stdout
123