What will be the output of the following PHP code ?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>A. 123456789101112
B. 12345678910
C. 1234567891011
D. infinite loop
Answer: Option D

Join The Discussion