what are different storage in c??
Answers
Answered by
3
Auto, extern, register, static are the four storage classes in 'C'. auto is used for a local variable defined within a block or function. register is used to store the variable in CPU registers rather memory location for quick access. Static is used for both global and local variables.
Similar questions