auto declarator;
The auto keyword is the storage-class specifier indicating that the variable has local (automatic) extent. It is the default storage-class specifier for block-scoped variable declarations.
For related information, see extern, register, and static.