Can someone pls enlighten me on post increment and pre increment operators. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone pls enlighten me on post increment and pre increment operators.

29th May 2020, 4:56 AM
Victor Emmanuel
Victor Emmanuel - avatar
1 Answer
+ 3
The main point is that ++a increments the value and immediately returns it. a++ also increments the value (in the background) but returns unchanged value of the variable - what looks like it is executed later. Hope you understand the concept. Rock the code🤟🤟
29th May 2020, 5:01 AM
Piyush
Piyush - avatar