You are viewing a single comment's thread.

view the rest of the comments →

0
1

[–] J_Darnley 0 points 1 point (+1|-0) ago  (edited ago)

No it won't. The second is equivalent to:

x = x * i;
i = i + 1;

a++ is "read then increment" whereas ++a is "increment then read".