Home » C++ Programming » Functions » Question
  1. Which is more effective while calling the functions?
    1. call by pointer
    2. call by value
    3. call by reference
    4. All of above
    5. None of these
Correct Option: C

In the call by reference, it will just copy the address of the variable to access it, so it will reduce the memory in accessing it.



Your comments will be displayed only after manual approval.