InterviewSolution
Saved Bookmarks
| 1. |
What is keyword auto for? |
|
Answer» 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. |
|