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

0



Your comments will be displayed only after manual approval.