51
What will be the output of the following PHP code ?
<?php
$i = "";
while ($i = 10)
{
print "hi";
}
print "hello";
?> Answer & Solution
Answer: Option
B
Solution:
While condition always gives 1.