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
AnswerC.
1 8
D.
1 9
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board