Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 8;
while (--$num > 0 || ++$num)
{
print $num;
}
?>
β
Correct Answer: (A)
76543211111111......infinite time