Examveda
Examveda

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

A. 1234567891011121314….infinitely

B. 01234567891011121314…infinitely

C. no output

D. error

Answer: Option C

Solution(By Examveda Team)

The first conditio itsef fails thus the loop exits.

This Question Belongs to PHP >> Operators And Expressions In Php

Join The Discussion

Related Questions on Operators and Expressions in php