InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by the term dynamic allocation |
|
Answer» Dynamic memory allocation is when an executing program requests that the operating system give it a BLOCK of main memory. The program then uses this memory for some purpose. USUALLY the purpose is to add a node to a data structure. ... The memory COMES from above the static part of the data segment. |
|