Examveda
Examveda

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

A. 1234567891011121314….infinitely

B. 01234567891011121314…infinitely

C. 1

D. 0

Answer: Option A

Solution(By Examveda Team)

As it is || operator the second expression is not evaluated and i is always incremented, in the first case to 1.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)