0
What is meant by dynamic memory allocation?
when encountered heaps, they said that they are stored into dynamic memory allocation, what does that mean?
1 Answer
0
Dynamic memory allocation refers to manual memory allocation via 'malloc', 'realloc', 'calloc', 'free' functions (and 'new', 'delete' operators in C++).This allows you to obtain more memory when required and release it when not necessary.