1.

What will be the output of the following PHP code ? <?php $i = 0 do { $i++; } while ($i < 3); print $i; ?>

A. 2
B. 3
C. 0
D. 1
Answer» C. 0


Discussion

No Comment Found