First page Back Continue Last page Graphics
REFERENCE
Allows changing the calling program variable inside a function.
Syntax is to follow formal parameter name with an &
Another name for the same object
vector<double> homework;
vector<double>& hw = homework;
hw and homework refer to the SAME object.