13
votes
Stack,Static and Heap in C++
A similar question was asked, but it didn't ask about statics.
Summary of what static, heap, an …
0
votes
C++ Accessing the Heap
Why do you want it on the heap? If you add it as part of the class then it will be in the same place the class is, possibly on the stack or in global memory. Perhaps you want to have a variable siz …
