Examveda
Examveda

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

A. 5

B. 555555555…infinitely

C. 54321

D. error

Answer: Option B

Solution(By Examveda Team)

As it is && operator it is being incremented and decremented continuously.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)