MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following C program ?#include void main (void){int shifty;shifty = 0570;shifty = shifty >> 4;shifty = shifty |
| A. | The value of shifty is 15c0 |
| B. | The value of shifty is 4300 |
| C. | The value of shifty is 5700 |
| D. | The value of shifty is 2700 |
| Answer» E. | |