1.

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

A. Nothing
B. -4
C. -6
D. Error
E. None of these
Answer» B. -4


Discussion

No Comment Found

Related MCQs