1.

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

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


Discussion

No Comment Found

Related MCQs