What are the storage allocation strategies?

a) Static allocation lays out storage for all data objects at compile time.
b) Stack allocation manages the run-storage as a stack.
c) Heap allocation allocates and deallocates storage as needed at run time from a data area known as heap.

Leave a Reply