In C/C++, what does the following mean?
for(;;){ ... }
An infinite loop which continues until there is a break, exit, or goto statement.
break
exit
goto