Q194
What will be the output of the following C code, given that the maximum value of signed char is 127 and that of unsigned char is 255. #include #include #define SCHAR_MAX main() printf("%d",SCHAR_MAX+1);
A.
256
B.
Error
C.
1
AnswerD.
128
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board