Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main()
{
signed char chr;
chr = 128;
printf("%d\n", chr);
return 0;
}
β
Correct Answer: (B)
-128