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