Q170
What will be the output of the following C code? #include void main() int h = 8; int b = h++ + h++ + h++; printf("%d ", h);
A.
9
B.
10
C.
12
D.
11
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board