Home » C Programming » Variables » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int num = 13;
    {
    num = 14;
    printf("%d", num);
    }
    }
    1. 14
    2. 13
    3. Compilation Error
    4. Runtime Error
    5. None of these
Correct Option: A

14



Your comments will be displayed only after manual approval.