1.

What will be the output of the following C code?
 #include <stdio.h>
void main()
{
double n = 5 % 3 & 4 + 5 * 6;
printf("%lf", n);
}

A. 3
B. 4
C. 3.000000
D. 2
E. 2.00000
Answer» F.


Discussion

No Comment Found

Related MCQs