Please anyone explain me Pre-increment and Decrement also Post- increment and decrement . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please anyone explain me Pre-increment and Decrement also Post- increment and decrement .

Am totally confused during the challenges about the increment and decrement operators,i need help..

7th Apr 2018, 5:33 PM
Deekshith K
Deekshith K - avatar
1 Answer
+ 2
++i (prefix op) -> increments i and returns the value of i after the increment i++ (postfix op) -> increments i and returns the value of i before the increment.
7th Apr 2018, 5:46 PM
Maksym Debil
Maksym Debil - avatar