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<stdio.h>
#include<limits.h>
main()
{
int d;
d=SHRT_MAX + SHRT_MIN+1;
printf("%d",d);
}
#include<stdio.h>
#include<limits.h>
main()
{
int d;
d=SHRT_MAX + SHRT_MIN+1;
printf("%d",d);
}A. -1
B. error
C. 1
D. 0
Answer: Option D

Join The Discussion