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