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

Discussion :: Object Oriented Programming Using C++

  1. Which of the following statements creates and initializes a pointer named salesPtr?

  2. A.
    salesPtr = NULL;
    B.
    *salesPtr = "";
    C.
    float &salesPtr = NULL;
    D.
    float *salesPtr = "";
    E.
    float *salesPtr = NULL;

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    No answer description available for this question.


Be The First To Comment