Examveda
Examveda

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

A. 2

B. 3

C. 0

D. 1

Answer: Option B

Solution(By Examveda Team)

The increment happens and then the check happens.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)