1.

What will be the output of the following C code?
 #include <stdio.h>
#define MINIMUM 10
#ifdef MINIMUM
#define MAXIMUM 110
#endif
int main()
{
printf("%d %d n", MAXIMUM, MINIMUM);
return 0;
}

A. 10
B. 110
C. 10 110
D. 110 10
E. Compilation Error
Answer» E. Compilation Error


Discussion

No Comment Found

Related MCQs