Is a prefix increment in a loop better in some way?

In the real world I've pretty much only seen i++ in for loops, but on many problems here I see ++i. Just wondering if there is some reason one is better than the other in the context of a for loop.

Comments (1)