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