">
<?phpfor ($c = 4; $c < 9; $c++) { for(; $c < 9; $c++) print"c";}?>
The c value is changed in the inner loop and reaches five, thus does not execute the second outer loop.
Previous Question Next Question
Your comments will be displayed only after manual approval.