Examveda

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

A. 128

B. -128

C. Depends on the compiler

D. None of the mentioned

Answer: Option B


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals