

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