Advertisements
Advertisements
प्रश्न
What is a reference variable? What is its use?
टिप्पणी लिखिए
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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.