Tagged Questions
The stack-memory tag has no wiki summary.
6
votes
2answers
106 views
Where will the memory allocation for a string in C will take place
For the C statement given below i would like to know where the memmory allocation will take place.
char* ptr="Hello";//ptr is a automatic variable
then the pointer variable ptr will be allocated on ...
6
votes
2answers
1k views
How is heap and stack memories managed, implemented, allocated?
In C/C++ we can store variables, functions, member functions, instances of a class either on a stack or a heap.
How is each implemented? How is it managed (high level)? Does gcc preallocates a ...
4
votes
2answers
90 views
How does the amount of memory for a process get determined?
From my understanding, when a process is under execution it has some amount of memory at it's disposal. As the stack increases in size it builds from one end of the process (disregarding global ...
2
votes
1answer
1k views
How is heap and stack memories mananged, implemented, allocated [closed]
Possible Duplicates:
How is heap and stack memories mananged, implemented, allocated?
Stack,Static and Heap in C++
In C/C++ we can store variables, functions, member functions, instances ...
1
vote
5answers
222 views
memory allocation in Stack and Heap
This may seem like a very basic question, but its been in my head so -
When we allocate a local variable, it goes into stack. Similarly dynamic allocation cause the variable to go on heap. Now, my ...
1
vote
7answers
271 views
Where my memory is alloced, Stack or Heap, Can I find it at Run-time?
I know that memory alloced using new, gets its space in heap, and so we need to delete it before program ends, to avoid memory leak.
Let's look at this program...
Case 1:
char *MyData = new ...
0
votes
2answers
156 views
Is life-time of local variables in a function, necessarily equal to life-time of that function's execution? [closed]
Possible Duplicate:
how does an optimizing c++ compiler reuse stack slot of a function?
do c++ compilers have their ways to determine the time at which, life-time of each local variable in ...