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