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 + 3 - 4;
    printf("%d", p);
    }
    1. Compilation Error
    2. Garbage value
    3. Runtime Error
    4. 14
    5. None of these
Correct Option: D

14



Your comments will be displayed only after manual approval.