1.

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

A. MAXIMUM
B. MINIMUM
C. 20
D. 100
E. 100 20
Answer» F.


Discussion

No Comment Found

Related MCQs