Examveda
Examveda

What will be the output of the following PHP code ?
<?php
for(++$i; ++$i; ++$i)
{
    print $i;
    if ($i == 4) 
        break;
}
?>

A. 24

B. 134

C. 1234

D. 1

Answer: Option A

Solution(By Examveda Team)

The order of execution is initialization, check, increment/decrement, check, increment/decrement, check, increment/decrement….so on.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)