Computer Science, asked by Parmjitpannu8575, 1 year ago

Explain about auto storage class.

Answers

Answered by kkk6757
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