โช 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;
}
What will be the output of the following program on GCC compiler?<
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;
}