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
548k questions
547k answers
4 comments
86.3k users