Q300
What will be the output of the following C code? #include int main() int a = 10, b = 5, c = 5; int d; d = a == (b + c); printf("%d", d);
A.
Syntax error
B.
1
AnswerC.
10
D.
5
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board