Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int num1 = 99;
    int num2 = sizeof(num1++);
    printf("num1 is %d", num1);
    }
    1. num1 is 97
    2. num1 is 98
    3. num1 is 99
    4. Compilation Error
    5. None of these
Correct Option: C

num1 is 99



Your comments will be displayed only after manual approval.