MCQOPTIONS
Saved Bookmarks
| 1. |
Predict the output of following program. #include int main() { char flag=0x0f; flag &= ~0x02; printf("%d",flag); return 0; } |
| A. | 13 |
| B. | d |
| C. | 22 |
| D. | 10 |
| Answer» B. d | |