Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int t = 15 + 17 * 14 - 19 * (13, 12);
    printf("%d", t);
    }
    1. 12
    2. 22
    3. 13
    4. 23
    5. 25
Correct Option: E

25



Your comments will be displayed only after manual approval.