Q53
What will be the output of the following C code? #include static inline int max(int a, int b) return a > b ? a : b; main() int m; m=max(-6,-5); printf("%d",m);
A.
-6
B.
-5
AnswerC.
Junk value
D.
Error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board