Q. What will be the output of the following PHP code ?
Code:
<?php
$k = 0;
while ($k = 20)
{
print "Yami";
}
print "Thakur";
?>
β
Correct Answer: (C)
Yami Thakur