Storage Classes

Matching exercise

    
Match the items on the right to the items on the left.
auto
extern
static
register
malloc() and calloc()
Within function(storage place RAM)
Till the end of the main program Maybe declared anywhere in the program
Till the end of the main program, Retains value between multiple functions call
Within the function
allocates the memory but don't resize.