1.

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

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


Discussion

No Comment Found

Related MCQs