blah blah blah is here! blah blah » Close

1
votes
1 answers

Decrement Looping

Is a Decrement loop really more efficient ? [code] for (int j = 0; j < 200; j++) { } // OR for (int j = 200; j > 0; j--) ...

Feedback