1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int n1 = 1, n2 = 3, n3 = 4;
int R = n1 & n2 | n3;
printf("%d", R);
}

A. 1
B. 2
C. 3
D. 4
E. 5
Answer» F.


Discussion

No Comment Found

Related MCQs