In C, storage class specifiers define:
There are four storage class specifiers:
auto
register
static
extern
auto refers to automatic (local) variables.
In fact, all local variables are auto by default.
Example:
int main() {
auto int x; // same as: int x;
}
⚠️ If not initialized, contains unpredictable value.