Thu Nov 13, 2008 1:57 pm
for(init;test;incr)stmt
Abbreviates...
init;while(test){stmt incr;}
for(i = 1; i <= 10; ++i) printf("%d\n", i);
Abbreviates...
i = i; while(i <= 10) { printf("%d\n", i); ++i; }
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.