Examveda

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);
}

A. 0

B. -128

C. error

D. -1

Answer: Option B


This Question Belongs to C Program >> Standard Library Functions

Join The Discussion

Related Questions on Standard Library Functions