MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statements are correct about the program? #include int main() { unsigned int num; int i; scanf("%u", &num); for(i=0; i |
| A. | It prints all even bits from num |
| B. | It prints all odd bits from num |
| C. | It prints binary equivalent num |
| D. | Error |
| Answer» D. Error | |