1.

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

A. Error
B. 9
C. 987654321
D. Nothing
E. None of these
Answer» D. Nothing


Discussion

No Comment Found

Related MCQs