Vidyalelo
C Programming · Q64

C Miscellaneous

Programming · C Programming · question 64

Q64

What will be the output of the following C code? #include extern inline int min(int a, int b) return a < b ? a : b; main() int m; m=min(3,-5); printf("%d",m);

A.
Error
Answer
B.
3
C.
-5
D.
Junk value

Answer: Option A

Solution

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