"/>
<?php$i = "";while ($i = 10){ print "hi";}print "hello";?>
<?php
$i = "";
while ($i = 10)
{
print "hi";
}
print "hello";
?>
hello
infinite loop
hihello
error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
While condition always gives 1.
Be The First To Comment