

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