Saved Bookmarks
| 1. |
What is a reference variable? What is its use? |
|
Answer» Reference variable in C++ is alias for 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. |
|