Examveda
Examveda

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

A. iiiii

B. infinite loop

C. iiiiiiiiiiiiiiiiiiiiiiiii

D. no output

Answer: Option A

Solution(By Examveda Team)

The i value is changed in the inner loop and reaches five, thus does not execute the second outer loop.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)