1.

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

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


Discussion

No Comment Found

Related MCQs