Q. What will be the output of the following PHP code ?
Code:
<?php
$n = 15;
while (--$n > 0 && ++$n)
{
print $n;
}
?>
β
Correct Answer: (D)
15.......infinite time