Vidyalelo
C Programming · Q145

Standard Library Functions

Programming · C Programming · question 145

Q145

Given that the value of SHRT_MAX is equal to 32767 and that of SHRT_MIN is equal to -32768, What will be the output of the following C code? #include #include main() int d; d=SHRT_MAX + SHRT_MIN+1; printf("%d",d);

A.
-1
B.
error
C.
1
D.
0
Answer

Answer: Option D

Solution

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