Vidyalelo
C Programming · Q137

C Fundamentals

Programming · C Programming · question 137

Q137

What will be the final value of d in the following C code? #include int main() int a = 10, b = 5, c = 5; int d; d = b + c == a; printf("%d", d);

A.
Syntax error
B.
1
Answer
C.
5
D.
10

Answer: Option B

Solution

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