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