Examveda
Examveda

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

A. 0

B. infinite loop

C. 01

D. 1

Answer: Option D

Solution(By Examveda Team)

As it is a post increment, it checks and then does not enter the loop, thus prints only 1.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)