MCQOPTIONS
Saved Bookmarks
| 1. |
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; } |
| A. | z=0 |
| B. | z=1 |
| C. | z=4 |
| D. | z=2 |
| Answer» C. z=4 | |