+1 vote
in C Plus Plus by
What is the output of this C code?

    #include <stdio.h>
    void main()
    {
        double b = 5 & 3 && 4 || 5 | 6;
        printf("%lf", b);
    }
a. 1.000000
b. 2.000000
c. 0.000000
d. 7.000000

Related questions

+1 vote
asked Jun 13, 2019 in C Plus Plus by Derya
+1 vote
asked Jun 13, 2019 in C Plus Plus by Derya
...