Advertisements
Advertisements
Question
What is a reference variable? What is its use?
Short Note
Solution
Reference variable in C++ is an alias for the existing variable. They store nothing but the address of the variable used at the time of its declaration. It is important to assign the reference variable at the time of declaration, else it will show an error.
shaalaa.com
Variables of Built-in-data Types
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
How many bytes of memory is allocated for the following variable declaration if you are using Dev C++? short int x;
Which operator is used to access the reference of a variable?
Suppose x and y are two double-type variables that you want to add as integer and assign to an integer variable. Construct a C++ statement to do the above.