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

Join The Discussion