1.

What will be the output of the following PHP code ?
<?php
$s = 2;
for (1; $s == 1; $s = 2)
{
print "In for loop statement executed...";
}
print "After for loop statement executed... n";
?>

A. After for loop statement executed...
B. Error
C. In for loop statement executed...
D. Nothing
E. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs