Medium
What is the output of the following code ?
$x = 0;
do {
echo ++$x;
echo $x++;
echo " ";
} while ($x < 10)
Author: ThéoStatus: PublishedQuestion passed 463 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about PHP