

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