0
Do u know , Differences between stack and heap , Let u share ur thought here .
TheĀ stackĀ is where temporary stuff, like function arguments and local variables, goes. It's size is limited. TheĀ heapĀ is ordinary global memory assigned to your program for dynamic use. Unlike the stack, the heap does not have size restrictions on variable size (apart from the obvious physical limitations of your computer). The one has to useĀ pointers to access memory on the heap. In C++, when you use the new operator to allocate memory, this memory is allocated in the applicationās heap segment.
4 Answers
+ 7
here is my thought: this question was asked 30 mins ago
https://www.sololearn.com/Discuss/740552/can-somebody-please-explain-me-what-exactly-is-the-stack-and-the-heap-on-c
please check at least one page of discussion before posting
+ 5
ok. sorry to bother you
0
thanks bos
0
No boskojevtic there is no question like this that I have posted