MCQOPTIONS
Saved Bookmarks
| 1. |
Predict the output of following program. #include int main() { int x=10; x &= ~2; printf("x= %d",x); return 0; } |
| A. | x= 10 |
| B. | x= 8 |
| C. | x= 12 |
| D. | x= 0 |
| Answer» C. x= 12 | |