Vidyalelo
C Programming · Q133

C Fundamentals

Programming · C Programming · question 133

Q133

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

A.
6
B.
15
Answer
C.
13
D.
21

Answer: Option B

Solution

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