Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    double var = 10;
    var++;
    printf("%lf", var);
    }
    1. compilation Error
    2. 10
    3. 10.000000
    4. 11
    5. 11.000000
Correct Option: E

11.000000



Your comments will be displayed only after manual approval.