What will be the output of the following PHP code ?
<?php
$i = 2;
while (++$i)
{
while (--$i > 0)
print $i;
}
?>
<?php
$i = 2;
while (++$i)
{
while (--$i > 0)
print $i;
}
?>
A. 210
B. 10
C. no output
D. infinite loop
Answer: Option D

Join The Discussion