Vidyalelo
C Programming · Q116

Function

Programming · C Programming · question 116

Q116

What will be the output of the following C code? #include #define MIN 0 #if MIN #define MAX 10 #endif int main() printf("%d %d ", MAX, MIN); return 0;

A.
10 0
B.
Compile time error
Answer
C.
Undefined behaviour
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board