MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> #define MINIMUM 15 #if defined(MINIMUM) - (!defined(MAXIMUM)) #define MAXIMUM 115 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM); return 0; } |
| A. | 15 115 |
| B. | 115 15 |
| C. | Garbage value |
| D. | Compilation Error |
| E. | None of these |
| Answer» E. None of these | |