Home » C Programming » Operators » Question
  1. What will be the final value of x in the following C code?
    #include <stdio.h>
    void main()
    {
    int num = 11 * 6 / 5 + 23;
    }
    1. 11
    2. 36
    3. 5
    4. 23
    5. Depends on compiler
Correct Option: B

36



Your comments will be displayed only after manual approval.