1.

What will be the output of the following PHP code ?
<?php
for ($g = 0; $g % ++$g; $g++)
{
print"g";
}
?>

A. 0
B. Error
C. Nothing
D. g
E. None of these
Answer» D. g


Discussion

No Comment Found

Related MCQs