adplus-dvertising
frame-decoration

Question

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

a.

123456789101112

b.

12345678910

c.

1234567891011

d.

infinite loop

Answer: (d).infinite loop

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 ?