1.

What will be the output of the following PHP code ?
<?php
$k = 1;
for ($k++; $k == 1; $k = 2)
print "In for loop execute...";
print "After loop executed... n";

?>

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


Discussion

No Comment Found

Related MCQs