fork(2) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int& func();
  6.  
  7. int main()
  8. {
  9. cout << func();
  10. }
  11.  
  12. int& func()
  13. {
  14. int a = 99;
  15. return a;
  16. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
Standard output is empty