1.

What will be the output of the following PHP code ?
<?php
$number = 5;
while (++$number)
{
while ($number --> 0)
print $number;
}
?>

A. Error
B. 5
C. 543210
D. 0
E. None of these
Answer» D. 0


Discussion

No Comment Found

Related MCQs