Latest C Aptitude Question SOLUTION: What will be the output of the program? #include int main() { int x=12, y=7, z; z = x!=4 || y == 2; printf("z=%d\n", z); return 0; } Options 1) z=0 2) z=