Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 9 (Q.No. 38)
38.
Which of the following will increase the value stored in the first element of the fee array by 2?
amount[0] = amount[0] + 2;
amount, fee[0] = amount, fee [0] + 2;
feelnfo.amount[0] = feelnfo.amount[0] + 2;
fee[0].amount = fee[0].amount + 2;
fee.amount[0] = fee.amount[0] + 2;
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.