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

2.00000



Your comments will be displayed only after manual approval.