0 votes
in C Plus Plus by
What is storage class in C Language? What are the different storage classes in C in C Language?

1 Answer

0 votes
by

Storage class is an attribute that changes the behavior of a variable. It controls the lifetime,

scope and linkage. The storage classes in c are auto, register, and extern, static, typedef.

...