Importance of "auto" specifier
Options
- Automatically initializes a variable to NULL.
- Automatically initializes a variable to 0;.
- Automatically increments the variable when used.
- Indicates that a variable's memory space is allocated upon entry into the block.
- Indicates that a variable's memory will automatically be preserved.
CORRECT ANSWER : Indicates that a variable's memory space is allocated upon entry into the block.
Write your comments