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