Q274
What will be the output of the following C code? #include void main() char a = 'A'; char b = 'B'; int c = a + b % 3 - 3 * 2; printf("%d ", c);
A.
65
B.
58
C.
64
D.
59
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board