local variable
RU: локальная переменная
A variable declared inside a function body. Its scope is limited to that function body, and its lifetime is tied to the function's stack frame: the variable is created when the frame is pushed and destroyed when the frame is popped.