✏️ Explanatory Question

What is keyword auto for?

👁 1,836 Views
📘 Detailed Answer
💡

Answer with Explanation

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;}NOTE − A global variable can’t be an automatic variable.