- Pasing arguments by reference means that the parameter is an alias for the same location as the argument.
- Consequeces:
- Any change to the parameter value is a change in the argument.
- When the function returns, the arguments will may have also changed.