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

181



Your comments will be displayed only after manual approval.