MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int p = 15 & 14 | 16; printf("%d", p); } |
| A. | 30 |
| B. | 15 |
| C. | 16 |
| D. | Compilation Error |
| E. | None of these |
| Answer» B. 15 | |