what does for( ; ; ) mean?


 
Thread Tools Search this Thread
Top Forums Programming what does for( ; ; ) mean?
# 1  
Old 11-21-2001
what does for( ; ; ) mean?

what does for( ; ; ) mean?

thanks
# 2  
Old 11-22-2001
infinite loop
# 3  
Old 12-06-2001
for(; Smilie

first semicolon (Smilie stands for assignments. All assignment should be assigned befor it. Next (Smilie is for conditions. After this u can write ur iteration statements.
If none is written befor of after any semicolon, then the compiler assume that there's no assignment, no conditions and even no iteration statement.
-sham-
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question