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