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

1.000000



Your comments will be displayed only after manual approval.