MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? void main() { int x = 0, y = 2, z = 3; int a = x & y | z; printf("%d", a); } |
| A. | 3 |
| B. | 2 |
| C. | Run time error |
| Answer» B. 2 | |