+ 1
Dynamic memory
Why we use exactly dynamic memory?
1 Answer
+ 1
You use dynamic memory to manually determine how much memory you want to allocate, when to allocate it and when to free it. It gives you more control and less gap between you and your hardware, in contrast to static memory allocation where the memory is allocated for your variables when the program starts.