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

Discussion :: Object Oriented Programming Using C++

  1. You have assigned the address of Value to the pointer P, Which statement will display the value stored in Value?

  2. A.
    cout<<P;
    B.
    cout<<*Value;
    C.
    cout<<&P;
    D.
    cout<<*P;

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment