What is meant by reference variable in C++?



What is meant by reference variable in C++?..

Answer / hrpynux@gmail.com

A reference variable is an alias, that is, another name for an already existing variable. Once a reference is initialized with a variable, either the variable name or the reference name may be used to refer to the variable.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is vector pair in c++?

0 Answers  


How do you clear a buffer in c++?

0 Answers  


Can we delete this pointer in c++?

0 Answers  


Where are setjmp and longjmp used in c++?

0 Answers  


What is object slicing and how can we prevent it?

2 Answers   Tech Mahindra,






Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.

0 Answers  


Define the process of handling in case of destructor failure?

0 Answers  


Where the memory to the static variables is allocated?

0 Answers  


why all c++ program must have default constructor?

6 Answers   IBM,


What are the basics concepts of OOPS?

1 Answers  


What is a float in c++?

0 Answers  


If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 Answers  


Categories