Vidyalelo
C++ Programming · Q4

C++ miscellaneous

Programming · C++ Programming · question 4

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
Answer
D.
'++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