1.

What will be the output of the following C code? #include <stdio.h> void main() { int a = 2 + 4 + 3 * 5 / 3 - 5; printf("%d", a); }

A. 7
B. 6
C. 10
D. 9
Answer» C. 10


Discussion

No Comment Found

Related MCQs