<<< Order of Precedence Example | Index | Implicit Casting >>> |
Prefix and postfix increment and decrement operators behave as follows:
int a = 5; int b = 5; int y = ++a; // a = 6, y = 6 int z = b++; // b = 6, z = 5
<<< Order of Precedence Example | Index | Implicit Casting >>> |