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

Discussion :: Object Oriented Programming Using C++

  1. Which of the following statements will assign the address of the age variable to the agePtr pointer?

  2. A.
    agePtr = &age;
    B.
    agePtr = *age;
    C.
    &agePtr = age;
    D.
    *agePtr = age;
    E.
    agePtr -> *age;

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment