Q. What will be the output of the following PHP code ?
Code:
<?php
$number = 5;
while (++$number)
{
while ($number --> 0)
print $number;
}
?>
β
Correct Answer: (C)
543210