Posted by Paradox on August 04, 1999 at 15:36:56:
Is:
for (int i=0; (i<10) && (test); i++) { do_something(); }
for (int i=0; i<10; i++) { if (test) do_something(); else break; }
(If anyone sees my html, sorry just experiementing.)
Follow Ups:
Post a Followup
Subject:
Comments: : Is: : <pre> : for (int i=0; (i<10) && (test); i++) { : do_something(); : } : </pre> : the same as: : <pre> : for (int i=0; i<10; i++) { : if (test) do_something(); : else break; : } : </pre> : (If anyone sees my html, sorry just experiementing.)
Optional Link URL: Link Title: Optional Image URL: