Calling By Reference
 
 
- Recall that in C, all calls are by value, meaning that a function can never modify the arguments of its caller
- In C, a “call by reference” can only be performed by passing a pointer
- C++ can do this automatically using the “&” operator, like var in Pascal