InterviewSolution
| 1. |
What Do You Mean By Dynamic Memory Allocation? Give An Example. |
|
Answer» The process of allocating memory at the time of execution is called dynamic memory allocation. The allocation and release of this memory space can be done with the help of some built in functions whose prototypes are FOUND in alloc.h and stdlib.h.
The process of allocating memory at the time of execution is called dynamic memory allocation. The allocation and release of this memory space can be done with the help of some built in functions whose prototypes are found in alloc.h and stdlib.h.
|
|