A reference variable is an alias, that is, another name for an already existing variable in C++. Once a reference is initialized with avariable, either the variable name or the reference name may be used to refer to the variable. They can be used like normal variables. ‘&’ operator is needed only at the time of declaration. Also, […]