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

Discussion :: Object Oriented Programming Using C++

  1. Which of the following statements declares a one-dimensional Character array named item that consists of five elements?

  2. A.
    char item[0 to 4] = "";
    B.
    char item[0 to 5] = "";
    C.
    char item[4] = "";
    D.
    char item[5] = "";
    E.
    string item[5] = ' ';

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment