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

Discussion :: Object Oriented Programming Using C++

  1. Which of the following statements will create and initialize a feelnfo array named fee?

  2. A.
    fee feeInfo = {{0}, {0}};
    B.
    fee as feeInfo = 0, 0;
    C.
    feeInfo fee = 0, 0;
    D.
    feeInfo fee = [{0}, {0}];
    E.
    feeInfo fee = {0,0};

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    No answer description available for this question.


Be The First To Comment