Home » C Programming » Variables » Question
  1. What will be the n in the following C code?
    #include <stdio.h>
    void main()
    {
    int n;
    }
    1. static variable
    2. global variable
    3. automatic variable
    4. register variable
    5. None of these
Correct Option: C

automatic variable



Your comments will be displayed only after manual approval.