What is keyword auto for?
By default every local variable of the function is automatic (auto). In the below function both the variables āiā and ājā are automatic variables.
void f() { int i; auto int j; }
By default every local variable of the function is automatic (auto). In the below function both the variables āiā and ājā are automatic variables.
void f() { int i; auto int j; }