

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