1
Reply

what is the advantage of allocation on Heap

Keyur

Keyur

17y
6.2k
0
Reply

    Basically, the heap is more flexible than the stack. That’s because memory space for the heap can be dynamically allocated and de-allocated as needed. However, memory of the heap can at times be slower when compared to that stack.