#include stdio.h

int main() {
char a = 'A';
char b = 'B';
int sum = a + b;
printf("The sum of %c and %c is %d in decimal form.\n", a, b, sum);
return 0;
}

What is the output of the following c program

Posted on by