MCQOPTIONS
Saved Bookmarks
| 1. |
#include int i; int main() { if (i); else printf(" lse"); return 0; } What is correct about the above program? |
| A. | if block is executed |
| B. | else block is executed |
| C. | It is unpredictable as i is not initialized |
| D. | Error: misplaced else |
| Answer» C. It is unpredictable as i is not initialized | |