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