

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int x=12, y=7, z;_x000D_ z = x!=4 || y == 2;_x000D_ printf("z=%d\n", z);_x000D_ return 0;_x000D_ } |
A. | z=0 |
B. | z=1 |
C. | z=4 |
D. | z=2 |
Answer» C. z=4 | |