Vidyalelo
C Programming · Q114

C Fundamentals

Programming · C Programming · question 114

Q114

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

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

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board