Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
main()
{
    signed char a[]= “BAT”;
    printf(“%c”, a[1]);
    return 0;
}

A. -A

B. BAT

C. A

D. 65

Answer: Option C


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous