Multiple choice Which of the following is the default storage class in C language? Auto Static Register 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.