Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int t1 = 18;
    int t2 = 14 * 16 + 13 * 14 < 13 ? 14 : 13;
    printf("%d\n", t2);
    }
    1. 12
    2. 13
    3. 14
    4. 15
    5. 16
Correct Option: B

13



Your comments will be displayed only after manual approval.