What will be the output of the following C code?
#include<stdio.h>
#include<limits.h>
main()
{
int d;
d=CHAR_MIN;
printf("%d",d);
}
#include<stdio.h>
#include<limits.h>
main()
{
int d;
d=CHAR_MIN;
printf("%d",d);
}A. 0
B. -128
C. error
D. -1
Answer: Option B

Join The Discussion