

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include <stdio.h> int main() { int p1 = 3, p2 = 5; int p3 = p1 & p2 == 4; printf("%d n", p3); } |
A. | Undefined behaviour |
B. | 0 |
C. | 1 |
D. | 2 |
E. | Compilation Error |
Answer» C. 1 | |