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