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