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

0



Your comments will be displayed only after manual approval.