C++ References Question:
Download Questions PDF

What means pass by reference?

Answer:

The callee function receives a set of references which are aliases to variables. If a change is made to the reference variable, the original value (passed by the caller function) will also be changed. All the references are handled by the pointers. Multiple values modification can be done by passing multiple variables.

Download C++ References Interview Questions And Answers PDF

Previous QuestionNext Question
What means pass by value?What means pass by pointer?