Vidyalelo
C Programming · Q179

C Fundamentals

Programming · C Programming · question 179

Q179

What will be the output of the following C code? #include void main() int k = 8; int x = 0 == 1 && k++; printf("%d%d ", x, k);

A.
0 9
B.
0 8
Answer
C.
1 8
D.
1 9

Answer: Option B

Solution

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