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

Discussion :: Object Oriented Programming Using C++

  1. You have declared an integer pointer called point You have also declared an integer called number. Which statement is the correct format?

  2. A.
    point = number;
    B.
    point = *number;
    C.
    point = &number;
    D.
    point = +number;

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment