Programming MCQS - QUESTION DETAILS

What is the role of the 'auto' keyword in C?
A. Declare an automatic variable
B. Declare an automatic pointer
C. Automatically allocate memory
D. Auto-cast variables

'auto' is used to declare automatic variables in C.

Similar Questions