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