Explain about auto storage class.
Answers
Answered by
0
auto: This is the default storage classfor all the variables declared inside a function or a block. Hence, the keyword auto is rarely used while writing programs in C language. Autovariables can be only accessed within the block/function they have been declared and not outside them (which defines their scope).
Similar questions