Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int t1 = 3, t2 = 5;
    int t3 = ~t1 & t2;
    printf("%d\n", t3);
    }
    1. -3
    2. 5
    3. 3
    4. -5
    5. 4
Correct Option: E

4



Your comments will be displayed only after manual approval.