Computer Science, asked by Shaheensheikh2387, 9 months ago

If storage class is not specified then what is th dfault storage class

Answers

Answered by Raju2392
1

Answer:

auto: This is the default storage class for all the variables declared inside a function or a block. Hence, the keyword auto is rarely used while writing programs in C language. Auto variables can be only accessed within the block/function they have been declared and not outside them (which defines their scope).

Similar questions