Vidyalelo
C Programming · Q170

C Fundamentals

Programming · C Programming · question 170

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
Answer

Answer: Option D

Solution

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