What will be the output of the following program on GCC compiler?<

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include  
int main() {
int x=12, y=7, z;
z = x!=4 || y == 2;
printf("z=%d ", z);
return 0;
}

A. z=0
B. z=1
C. z=2
D. z=4