Hacker News new | ask | show | jobs
by vardump 982 days ago
> `a[i++] = a[i++] + 1;`

This is probably not what you want, as "i" is increased twice.

1 comments

That's why it matters in that situation, because it changes what actually happens (not just the performance).