Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    double m = 5 & 3 && 4 || 5 | 6;
    printf("%lf", m);
    }
    1. Compilation Error
    2. 4.000000
    3. 3.000000
    4. 2.000000
    5. 1.000000
Correct Option: E

1.000000



Your comments will be displayed only after manual approval.