+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.2.000000
b.Run time error
c.30
d.2

Related questions

0 votes
asked Jun 11, 2020 in C Plus Plus by Robindeniel
0 votes
asked Jun 15, 2020 in C Plus Plus by Robindeniel
...