What will be the output of the following C code?
#include <stdio.h>
void main()
{
double b = 3 && 5 & 4 % 3;
printf("%lf", b);
}
#include <stdio.h>
void main()
{
double b = 3 && 5 & 4 % 3;
printf("%lf", b);
}
A. 3.000000
B. 4.000000
C. 5.000000
D. 1.000000
Answer: Option D
Join The Discussion