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

8



Your comments will be displayed only after manual approval.