Type Qualifiers, Enumerations, and Storage Classes in C
摘要
In this chapter, we explain type qualifiers, enumerations, and storage classes in C programming. The primary type qualifiers are const, restrict, and volatile. Storage classes are auto, extern, static, and register. The keywords restrict, volatile, and register are especially important for hardware programmers, whereas the keywords const, auto, and extern are of equal importance for every C programmer.