Q. What will be the output of the following PHP code?
Code:
<?php
$x = 10;
while ($x < 10) {
$x++;
echo $x, ",";
}
?>
β
Correct Answer: (D)
No output