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
<?php
$k = 0;
while ($k = 20)
{
print "Yami";
}
print "Thakur";
?>
You must be Logged in to update hint/solution