

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