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