Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
int main()
{
    signed char ch= ‘a’;
    printf(“%u”,ch);
    return 0;
}

A. -65

B. 65

C. -97

D. 97

Answer: Option D


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous