A
Q. What will be the output of the following PHP code ?
Code:
<?php
$s = "";
while ($s = 20)
{
print "Hello";
}
print "World";
?>
$s = "";
while ($s = 20)
{
print "Hello";
}
print "World";
?>
- Correct Answer - Option(C)
- Views: 17
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.