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