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..
1 Antwort
+ 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.