What will be the output of the following C code?
#include <stdio.h>
void main()
{
int b = 5 & 4 & 6;
printf("%d", b);
}
#include <stdio.h>
void main()
{
int b = 5 & 4 & 6;
printf("%d", b);
}A. 5
B. 6
C. 3
D. 4
Answer: Option D

Join The Discussion