MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php do { print "hi"; } while(0); print "hello"; ?> |
| A. | Infinite loop |
| B. | Hihello |
| C. | Hello |
| D. | Error |
| Answer» C. Hello | |