C++ References Question: Download C++ References PDF

What means pass by reference?

Tweet Share WhatsApp

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 PDF Read All 16 C++ References Questions
Previous QuestionNext Question
What means pass by value?What means pass by pointer?