1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int a = 4, b = 4;
int c = a ^ b & 3;
printf("%d n", c);
}

A. Compilation Error
B. 4
C. 3
D. Runtime Error
E. None of these
Answer» C. 3


Discussion

No Comment Found

Related MCQs