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