Vidyalelo
C Programming · Q300

C Fundamentals

Programming · C Programming · question 300

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
Answer
C.
10
D.
5

Answer: Option B

Solution

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