Which data structure is used for automatic dynamic allocation and memory access? Explain with suitable example.
Answers
Answered by
2
De-allocation: Deallocation is the "clean-up" of space being used for variables or other data storage. Compile time variables are automatically deallocated based on their known extent (this is the same as scope for "automatic" variables) It is the programmer's job to deallocate dynamically created space.
Similar questions