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

16



Your comments will be displayed only after manual approval.