Q. What will be the output of the following PHP code ?
Code:
<?php
for($g = 0; $g < 15; $g++)
{
for($h = $g; $h > $g; $g--)
print $g;
}
?>
β
Correct Answer: (A)
Nothing