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
C. 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 (By Examveda Team)
Auto is a automatic storage class. The purpose of auto is it indicates that a variable’s memory will automatically be preserved.

Join The Discussion