MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { if (printf("%d", printf("))) printf("I am Sad..."); else if (printf("1")) printf("I am Happy..."); } |
| A. | Runtime Error |
| B. | I am Sad... |
| C. | I am Happy... |
| D. | Compilation Error |
| E. | None of these |
| Answer» E. None of these | |