Q192
What will be the output of the following C code? #include void main() int h = 8; int b = 4 * 6 + 3 * 4 < 3 ? 4 : 3; printf("%d ", b);
A.
3
AnswerB.
33
C.
34
D.
Run time error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board