1.

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

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


Discussion

No Comment Found