Computer Science, asked by Aquamarine3625, 10 months ago

Which pf the following is a key word used for a storage class

Answers

Answered by mishti53
0

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