Q34
What does the "auto" specifier do?
A.
It automatically initializes a variable to 0
B.
It indicates that a variable’s memory will automatically be preserved
AnswerC.
It automatically increments the variable when used
D.
It automatically initializes a variable to NULL
E.
It indicates that a variable’s memory space is allocated upon entry into the block.
Answer: Option B
Solution
Answer: Option B
Solution:
Auto is a automatic storage class. The purpose of auto is it indicates that a variable’s memory will automatically be preserved.