A
Q. What will be the output of the following PHP code ?
Code:
<?php
for ($d = 0; -7 ; $d++)
{
print"d";
if ($d == 4)
break;
}
?>
for ($d = 0; -7 ; $d++)
{
print"d";
if ($d == 4)
break;
}
?>
- Correct Answer - Option(D)
- Views: 9
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.