

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