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.2.000000
b.Run time error
c.30
d.2
#c
language
Please
log in
or
register
to answer this question.
0
Answers
...