See web reference links at the bottom for more information
&) before the variable name.int rats; // means "reference-to-int" int & rodents = rats;
int &count;
void squareByReference(int &numberRef) { numberRef *= numberRef; }
Some C++ programmers prefer to write:
int& numberRef
To me, this indicates that the placement of the & can be chosen: