for(;;) and while (true) loops - C++ Forum
You can use an empty statements in creating your for loops, as i did in the following loop: for ( ; score < 10 ; ) i used an empty statement for the initialization and action statements. That's fine because i declared and initialized score before the loop...