Q. What will be the output of the following PHP code ?
Code:
<?php
$k = -1;
while (++$k && --$k)
{
print $k;
}
?>
β
Correct Answer: (A)
Nothing
<?php
$k = -1;
while (++$k && --$k)
{
print $k;
}
?>
You must be Logged in to update hint/solution