Vidyalelo
Computer Science · Q451

Object Oriented Programming Using C++

Engineering and GATE · Computer Science · question 451

Q451

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

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};
Answer

Answer: Option E

Solution

Answer: Option E
No explanation is given for this question Let's Discuss on Board