C++ MQCs with Explanation (CHAPTER 4: FUNCTIONS IN C++)

The ‘call by reference’ approach of invoking a function enables us to?

  1. copy the values of arguments into the calling function
  2. not to alter the values of the original variables in the calling program
  3. change the values of the variables in the calling program
  4. use the function on the left-hand side of an assignment statement



Answer: 
Option c: change the values of the variables in the calling program

Explanation Here

Post a Comment

0 Comments