Q. What will be the output of the following PHP code ?
Code:
<?php
$n = 10;
for ($n)
{
print $n;
}
?>
β
Correct Answer: (D)
Error
<?php
$n = 10;
for ($n)
{
print $n;
}
?>
You must be Logged in to update hint/solution