Examveda
Examveda

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);
}

A. 1.000000

B. 0.000000

C. 7.000000

D. 2.000000

Answer: Option A


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals