In C, storage class specifiers define:

There are four storage class specifiers:

auto
register
static
extern

1️⃣ auto

Meaning

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;
}

Properties

⚠️ If not initialized, contains unpredictable value.