A
Q. What will be the output of the following PHP code ?
Code:
<?php
$m = 8;
while (--$m > 0 || ++$m)
{
print $m;
}
?>
$m = 8;
while (--$m > 0 || ++$m)
{
print $m;
}
?>
- Correct Answer - Option(B)
- Views: 9
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.