Login
Remember
Register
Ask a Question
What is the output of this C code?
+1
vote
asked
Jun 13, 2019
in
C Plus Plus
by
Derya
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
#c-language
#c-programming
#c-compiler
Please
log in
or
register
to answer this question.
0
Answers
...