1.

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

A. Nothing
B. Error
C. 012345......infinite time
D. 543210......infinite time
E. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs