1.

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

A. 43210
B. 4
C. Error
D. 01234
E. None of these
Answer» B. 4


Discussion

No Comment Found

Related MCQs