Vidyalelo
C Programming · Q85

Function

Programming · C Programming · question 85

Q85

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

A.
10 0
Answer
B.
Compile time error due to illegal syntax for printf
C.
Undefined behaviour
D.
Compile time error due to illegal MIN value

Answer: Option A

Solution

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