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