Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$i = 2;
while (++$i)
{   
    while ($i --> 0)
    print $i;
}
?>

A. 210

B. 10

C. no output

D. infinite loop

Answer: Option A

Solution(By Examveda Team)

The loop ends when i becomes 0.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)