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

Discussion :: Object Oriented Programming Using C++

  1. Which of the following will store the letter H in a Character variable named initial?

  2. A.
    initial = 'H'
    B.
    initial = 'H';
    C.
    initial = "H"
    D.
    initial = "H";

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment