1
votes
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--) ...
blah blah blah is here! blah blah » Close
Is a Decrement loop really more efficient ? [code] for (int j = 0; j < 200; j++) { } // OR for (int j = 200; j > 0; j--) ...
Got feedack? Found a bug? report it here.