Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int n1 = 1, n2 = 3, n3 = 4;
    int R = n1 & n2 | n3;
    printf("%d", R);
    }
    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
Correct Option: E

5



Your comments will be displayed only after manual approval.