

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