Multiple choice

Which of the following is the default storage class in C language?

  1. Auto

  2. Static

  3. Register

  4. Extern

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Auto is the default storage class in C language. For example: auto int num;  or int num; Both of the above statements are the same.