Vidyalelo
C Programming · Q117

C Fundamentals

Programming · C Programming · question 117

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board