What would be a brief definition of a reference variable in C++?
It's a variable which references another one:
int foo; int& bar = foo;
bar is now a reference, which is to say that bar holds the location of memory where foo lies.
bar
foo
See here for more information.