Hi all,
When I do a loop, is the condition evaluated once at the start, or for every iteration? which of these is best:
for (i=0; i<someFunction(); i++){
// Do stuff
}
or
x = someFunction();
for (i=0; i<x; i++){
// Do stuff
}
Conversly, is it more expensive to reference struct members...