1.

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

A. 0
B. Error
C. Nothing
D. 5
E. 66666666.......infinite time
Answer» F.


Discussion

No Comment Found

Related MCQs