Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int p = 15 & 14 | 16;
    printf("%d", p);
    }
    1. 30
    2. 15
    3. 16
    4. Compilation Error
    5. None of these
Correct Option: A

30



Your comments will be displayed only after manual approval.