Q. What will be the output of the following PHP code ?
Code:
<?php
for ($d = 0; -7 ; $d++)
{
print"d";
if ($d == 4)
break;
}
?>
β
Correct Answer: (D)
ddddd