Q117
What will be the output of the following C code? #include void main() int b = 6; int c = 7; int a = ++b + c--; printf("%d", a);
A.
Run time error
B.
15
C.
13
D.
14
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board