CS18
20 pts., Feb. 21
A variable which is an alias for another variable. A reference variable has no memory allocated. Many confused this with reference parameter, which is a horse of a different color.
&
A variable which is used to hold the address of another variable. More precisely, its rvalue is some other variable's lvalue.
*