Vidyalelo
C Programming · Q230

C Fundamentals

Programming · C Programming · question 230

Q230

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

A.
0
B.
8
Answer
C.
11
D.
9

Answer: Option B

Solution

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