Q. What will be the output of the following PHP code ?
Code:
<?php
$s = "";
while ($s = 20)
{
print "Hello";
}
print "World";
?>
β
Correct Answer: (C)
Hello.....infinite time