You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The reference variable in C++ is the name given to the existing variables.
//The variable name and reference variable point share the same memory location in C++, which helps in updating the original variable using the reference variable.
//The code can be displayed in the following example.