Home » C Programming » Expressions

What will be the output of the program? #include<stdio.h> int main() { int x=12, y=7, z; z = x!=4 || y == 2; printf("z=%d\n", z); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!