If C++, if I write:
int i = 0; int& r = i;
then are i and r exactly equivalent?
i
r
A reference is an alias for an existing object.