Answer (Choose 1 answer)
What will be the output of the following program?#include <stdio.h>
int main(void)
{
char ch1, ch2;
int diff;
ch1 = 'B':ch2 = 'A';
diff = ch1 - ch2;printf("%c%c%d", ch1, ch2, diff);return 0;
}
A. AB1
B. BA1
C. A1B
D. B1A
Exit 48