Home / CSE / Object Oriented Programming Using C++ :: Discussion

Discussion :: Object Oriented Programming Using C++

  1. Which is a good reason for passing a variable's address to a function?

  2. A.
    the function will have a copy of the variable
    B.
    the function cannot change the value of the variable in the calling function
    C.
    C++ requires that all variables used in a function be passed by address
    D.
    the function needs to change multiple variable values
    E.
    the called function can change the value of the variable in the calling function

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    No answer description available for this question.


Be The First To Comment