MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following PHP code ? <?php $x = 1; if ($x--) print "hi" $x--; else print "hello" ?> a) hi |
| A. | Hi |
| B. | Hello |
| C. | Error |
| D. | No output |
| Answer» D. No output | |