Home » C Programming » Variables » Question
  1. A local variable declaration with no storage class specified is by default ____
    1. register
    2. static
    3. auto
    4. extern
    5. None of these
Correct Option: C

The default storage class for all the local variables is auto. Local variables are the one that are defined inside the functions or blocks.



Your comments will be displayed only after manual approval.