Vidyalelo
C Programming · Q120

C Fundamentals

Programming · C Programming · question 120

Q120

What will be the output of the following C code? #include void main() double b = 5 & 3 && 4 || 5 | 6; printf("%lf", b);

A.
1.000000
Answer
B.
0.000000
C.
7.000000
D.
2.000000

Answer: Option A

Solution

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