0
Trivial question (perhaps): is the dynamical allocation of memory within the heap useful just to free up the stack's space?
could you please explain me how may I take advantage of this "dynamical allocation" and in which cases?
1 Réponse
+ 1
Dynamical memory allocation is the technic of manually allocate and free memory in the heap. This method is discouraged. Use new and free instead. Is a more reliable method to manage memory.