1.

What will be the output of the following C code? #include <stdio.h> int main() { int x = 1, y = 2; int z = x & y == 2; printf("%d\n", z); }

A. 0
B. 1
C. Compile time error
D. Undefined behaviour
Answer» C. Compile time error


Discussion

No Comment Found

Related MCQs