Examveda
Examveda

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

A. 0 1 2 3 4

B. 0 1 2 3

C. 0 1 2 3 4 5

D. error

Answer: Option B

Solution(By Examveda Team)

The break statement after breaks the loop after i=3,does not print anymore.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)