Q. What will be the output of the following PHP code ?
Code:
<?php
for ($c = 4; $c < 9; $c++)
{
for(; $c < 9; $c++)
print"c";
}
?>
β
Correct Answer: (D)
ccccc