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