What means pass by reference?

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online C++ References Job Interview Questions And Answers