Oliver Stieber wrote:
use ++x instead of x++ since x++ potentially requires a temporary variable.
I seriously doubt this will actually have an effect on the resulting assembly code generated by any semi-serious compiler (regardless of the -O level) as for(i = 0; i < x; i++) is a quite common idiom...
Felix