Vidyalelo
C Programming · Q258

C Fundamentals

Programming · C Programming · question 258

Q258

What will be the output of the following C code? #include void main() int h = 8; int b = (h++, h++); printf("%d%d ", b, h);

A.
10 10
B.
10 9
C.
9 10
Answer
D.
8 10

Answer: Option C

Solution

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