

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