.TH "storage class" "" "" "Definition"
.PC
.PP
.B "Storage class"
refers to the part of a declaration that indicates how data are to be stored.
The C language recognizes the following storage clases:
.DS
.B
	auto
	extern
	register
	static
.R
.DE
.PP
.B typedef
is technically defined as a storage class as well, but it does not
actually indicate how data are stored.
The default class is
.BR auto .
.SH "See Also"
.Xr "auto," auto
.Xr "extern," extern
.Xr "Programming COHERENT," programmi
.Xr "register," register
.Xr "static," static
.Xr "typedef" typedef
