Vidyalelo
C Programming · Q188

C Fundamentals

Programming · C Programming · question 188

Q188

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

A.
6
Answer
B.
4
C.
1
D.
0

Answer: Option A

Solution

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