1.

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

A. In for loop
B. After for loop
C. In for loopAfter for loop
D. Infinite loop
Answer» D. Infinite loop


Discussion

No Comment Found