MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> void main() { double b = 5 & 3 && 4 || 5 | 6; printf("%lf", b); } |
| A. | 1.000000 |
| B. | 0.000000 |
| C. | 7.000000 |
| D. | 2.000000 |
| Answer» B. 0.000000 | |