fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int *make(int v) {
  5. int *p = new int;
  6. *p = v + 1;
  7. return p;
  8. }
  9. int *play(int &v) {
  10. cout << ++v;
  11. return &v;
  12. }
  13.  
  14. void remove(int *v) {
  15. delete v;
  16. }
  17. int main() {
  18. remove(play(*make(3)));
  19. return 0;
  20. }
  21.  
  22.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
5