Q233
What will be the output of the following C code? #include void main() int k = 8; int m = 7; k < m ? k = k + 1 : m = m + 1; printf("%d", k);
A.
Compile time error
AnswerB.
9
C.
8
D.
Run time error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board