0
Can someone pls enlighten me on post increment and pre increment operators.
2 Answers
+ 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đ€đ€