Q44
What will be the output of the following C code? #include #define max 20 main() #ifndef max #define min 10 #else #define min 30 #endif printf("%d",min);
A.
10
B.
20
C.
30
AnswerD.
error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board