adplus-dvertising
frame-decoration

Question

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: (a).123456789101112

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following PHP code ?