+ 1

I don't understand abou memory ......help me !

Static & Dynamic Memory To be successful as a C++ programmer, it's essential to have a good understanding of how dynamic memory works. In a C++ program, memory is divided into two parts: The stack: All of your local variables take up memory from the stack. The heap: Unused program memory that can be used when the program runs to dynamically allocate the memory. Many times, you are not aware in advance how much memory you will need to store particular information in a defined variable and the size o

27th Jul 2017, 10:13 AM
Serious Sam
Serious Sam - avatar
2 odpowiedzi
+ 10
You will want to understand the difference between the stack and the heap. http://net-informations.com/faq/net/stack-heap.htm
27th Jul 2017, 1:53 PM
Hatsy Rei
Hatsy Rei - avatar
+ 2
thnx
27th Jul 2017, 2:10 PM
Serious Sam
Serious Sam - avatar