InterviewSolution
Saved Bookmarks
| 1. |
Do You Have Any Idea About The Use Of "auto" Keyword? |
|
Answer» When a CERTAIN variable is declared with the keyword ‘AUTO' and initialized to a certain value, then WITHIN the SCOPE of the variable, it is reinitialized UPON being called repeatedly. When a certain variable is declared with the keyword ‘auto' and initialized to a certain value, then within the scope of the variable, it is reinitialized upon being called repeatedly. |
|