MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php $i = 0 while ($i++) { print $i; } print $i; ?> |
| A. | 0 |
| B. | Infinite loop |
| C. | 01 |
| D. | 1 |
| Answer» E. | |