c++ - Difference between call by reference and call by value - Stack Overflow
Possible Duplicate: Difference between value parameter and reference parameter ? What is the difference between call by reference and call by value? ... Briefly, call by reference is when a function can modify its arguments: def f(x): x := x + 1 print(x) ...