Examveda
Examveda

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

A. 123456789101112

B. 12345678910

C. 1234567891011

D. infinite loop

Answer: Option A

Solution(By Examveda Team)

The value of x is incremented and printed twice before checking,thus last loop it prints 11 and 12.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)