Examveda

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

A. 6

B. 4

C. 1

D. 0

Answer: Option A


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals