fork(1) download
  1. #include <iostream>
  2.  
  3. int const& func()
  4. {
  5. int x = 1;
  6. return x;
  7. }
  8.  
  9. int main()
  10. {
  11. const int& a = func();
  12. std::cout << a << std::endl;
  13. std::cout << a << std::endl;
  14. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
-1215758336
10