First page Back Continue Last page Graphics
Storage Class Specifiers
cv-qualifiers
auto – documents an automatic variable
register – allocates a hardware register to a variable.
static – with file-scope declaration, indicates internal linkage.
extern – indicates a reference declaration.
mutable – allows a member of a class (structure) to be altered.
const – non-changeable memory.
volatile – allows a memory location to be altered. (improves optimization)