fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void foo(int x)
  6. {
  7. x = 512;
  8. }
  9.  
  10. int main()
  11. {
  12. int x = -1;
  13.  
  14. foo(x);
  15.  
  16. std::cout << x;
  17. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
-1