Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int t1 = 8, t2 = 9, t3;
    if (t3 = t1 = 4 || t2 > 10)
    printf("%d", t3);
    else
    printf("No Output\n");
    }
    1. 1
    2. 9
    3. 8
    4. 10
    5. No output
Correct Option: A

1



Your comments will be displayed only after manual approval.