InterviewSolution
Saved Bookmarks
| 1. |
Predict the output of the below program:#include <stdio.h>int main(){printf("%d", 1 << 2 + 3 << 4);return 0;}(A) 112(B) 52(C) 512(D) 0 |
| Answer» | |