1.

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

A. Error
B. 15
C. Nothing
D. 15.......infinite time
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs