View Single Post
Old 27-10-2007, 07:39 AM   #12 (permalink)
QwertyManiac
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,658
Default Re: Can anyone figure out this C Code?

^^
For can be used without initialization and counter expressions

for( ; condition ; ) is valid as you can place the initialization outside and counter inside the loop if you have to. Removing the condition makes it infinite loop until break.
QwertyManiac is offline