What will be the output of the following C code?
#include <stdio.h>
void main()
{
double b = 5 % 3 & 4 + 5 * 6;
printf("%lf", b);
}
#include <stdio.h>
void main()
{
double b = 5 % 3 & 4 + 5 * 6;
printf("%lf", b);
}
A. 2
B. 30
C. 2.000000
D. Run time error
Answer: Option C
Join The Discussion