Possible Duplicate:
What and where are the stack and heap
Where is heap memory and stack memory stored?I mean where on the harddisk?what are the limits of their size?
Where is heap memory and stack memory stored?I mean where on the harddisk?what are the limits of their size? |
|||||||||
marked as duplicate by Daniel Pryden, Moron, Dour High Arch, JSBձոգչ, mvds Aug 12 '10 at 16:41This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question. |
|||||||||
|
You should consider memory and hard-disk as opposites. Memory is the more expensive stuff that comes in sticks and is 1000x faster than hard disk. I don't think you'll be able to "find" the heap and stack memory the way you want to. The OS sets this up by assigning some range of memory for each ( like 0x682CFF00 - 0x681CFF00 ). |
|||
|
Perhaps this discussion will help http://stackoverflow.com/questions/79923/what-and-where-are-the-stack-and-heap |
|||
|