Home » C Programming » Operators » Question
  1. What will be the final value of n4 in the following C code?
    #include <stdio.h>
    int main()
    {
    int n1 = 8, n2 = 4, n3 = 4;
    int n4;
    n4 = n2 + n3 == n1;
    printf("%d", n4);
    }
    1. 8
    2. 4
    3. 1
    4. 0
    5. None of these
Correct Option: C

1



Your comments will be displayed only after manual approval.