 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Mon Feb 27, 2006 7:06 am Post subject: static variable memory storage |
|
|
Hi,
I have a doubt of storing static variables in memory.I think
static,global variables are stored in the same location.Static,Gloabal
variables are stored in HEAP .Can anybody explain me the storage area
of all type variable in memory
Rgds,
Mani |
|
| Back to top |
|
 |
Jaspreet Guest
|
Posted: Mon Feb 27, 2006 7:06 am Post subject: Re: static variable memory storage |
|
|
plmanikandan (AT) gmail (DOT) com wrote:
| Quote: | Hi,
I have a doubt of storing static variables in memory.I think
static,global variables are stored in the same location.Static,Gloabal
variables are stored in HEAP .Can anybody explain me the storage area
of all type variable in memory
Rgds,
Mani
|
Does the language have any idea about heap or stack (As in storage
areas) ? Isn't it implementation dependant ? If yes, then I guess we
should not be worried about where those variables are stored. |
|
| Back to top |
|
 |
Rolf Magnus Guest
|
Posted: Mon Feb 27, 2006 12:06 pm Post subject: Re: static variable memory storage |
|
|
plmanikandan (AT) gmail (DOT) com wrote:
| Quote: | Hi,
I have a doubt of storing static variables in memory.I think
static,global variables are stored in the same location.Static,Gloabal
variables are stored in HEAP .Can anybody explain me the storage area
of all type variable in memory
|
C++ knows three types of memory storage types: static, dynamic and
automatic.
static memory is used for variables in namespace scope and static local
variables. dynamic memory is used by operator new and by *alloc. automatic
memory is used for non-static local variables. |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|