1.

What Are The Auto Variables? Where Are They Stored?

Answer»
  • The auto VARIABLES are stored in the main MEMORY of the system.
  • The keyword 'auto' is optional. 
  • Many of the variables used by the program or application are 'auto' variables, being the main memory is faster. 
  • These variables are stored in the memory runtime STACK.
  • It is de-allocated at the completion of its block execution.
  • It is a local variable which is allocated and DEALLOCATED automatically when the program flow enters and leaves the variable's scope.



Discussion

No Comment Found