+ 1
What is the Dynamic memory exact means.?
I really don't understand it well.
2 Respostas
+ 4
Memory allocation can be 2 types
1) static memory allocation
2) dynamic memory allocation
Memory created at compile time is static memory. You can change it.. Exists till program exits. Allocated in stack area of memory...
Memory allocated at tun time, means on-demand, can be either increases oe decreased on needed. Allocated and deleted any time when program executing. Space is allocated at heap area. Flexible memory allocation.
If you can't understand, still, mention the context of your doubt, that where you seen that.
Hope it helps..
+ 1
Thank you so much