Vidyalelo
C Programming · Q150

C Fundamentals

Programming · C Programming · question 150

Q150

What will be the output of the following C code? #include void main() int a = -5; int k = (a++, ++a); printf("%d ", k);

A.
-4
B.
-5
C.
4
D.
-3
Answer

Answer: Option D

Solution

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