Const Reference Parameters
Actual argument is not copied, but accessed directly.
No change will occur to the actual argument
Example: double distance(const Point& p1, const Point& p2)
A const reference parameter is efficient, but the programmer has the same guarantees as for a value parameter