Q4
What is the difference between '++i' and 'i++' in C++?
A.
None of the above
B.
They both have the same effect
C.
'++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it
AnswerD.
'++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board