A
Q. What will be the output of the following PHP code ?
Code:
<?php
for ($z = 0; $z < 20; $z++)
{
print "MCQ";
break;
print "Buddy";
}
?>
for ($z = 0; $z < 20; $z++)
{
print "MCQ";
break;
print "Buddy";
}
?>
- Correct Answer - Option(C)
- Views: 23
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.