A
Q. What will be the output of the following PHP code ?
Code:
<?php
$p = 5;
while($p = 20)
{
print "INDIA";
}
print "USA";
?>
$p = 5;
while($p = 20)
{
print "INDIA";
}
print "USA";
?>
- Correct Answer - Option(D)
- Views: 2
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.