In C/C++, what does the following mean?
for(;;){ ... }
It's an infinite loop, equivalent to while(true). When no termination condition is provided, the condition defaults to true.
while(true)
true
2.1m questions
2.1m answers
60 comments
57.0k users