Vidyalelo
C Programming · Q194

Standard Library Functions

Programming · C Programming · question 194

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
Answer
D.
128

Answer: Option C

Solution

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