

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