<?php$i = 2;while (++$i){ while ($i --> 0) print $i;}?>
<?php
$i = 2;
while (++$i)
{
while ($i --> 0)
print $i;
}
?>
210
10
no output
infinite loop
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
The loop ends when i becomes 0.
Be The First To Comment