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