Examveda
Examveda

What will be the output of the following C code?
#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


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals