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

Discussion :: Object Oriented Programming Using C++

  1. The statement double val[15]={44.123456};

  2. A.
    assigns the value 44.123456 to all members of the array val
    B.
    assigns the value 44.123456 to val[0] and 0 to the rest of the members
    C.
    gives an error message
    D.
    assigns the value 44.12345 to val[1] and val[5]

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment