+ 2
Shouldn't 0 be a variable? In: int x = 0; (++x + --x) ++x is evaluated first { x += 1; return x; //1 } --x is evaluated second { x -= 1; return x; //0 } (1 + 0) ---> 1
28th Dec 2019, 8:21 PM
Seb TheS
Seb TheS - avatar