in c++ where are static or non-static variables stay? I mean in memory.

and, When are static or non-static variables initialized?

Need someone help me get my thought clear. Thank you!

and what about C? same?

link|improve this question

Maybe you will find some material in here interesting : stackoverflow.com/questions/5162580/… – Muggen Mar 14 '11 at 5:48
feedback

3 Answers

up vote 9 down vote accepted

They can go wherever the compiler (or linker or loader) wants to put them in memory, the C and C++ standards don't mandate that level of detail. They only mandate the behaviour.

Typically, static members are initialised once, either on program startup (including at compile time so that they're simply loaded in an already-initialised state) or immediately before first use.

link|improve this answer
Very well (and carefully) worded. – Loki Astari Mar 14 '11 at 6:01
feedback

Non static members residing place depends up on how the object is instantiated.

class foo
{
    int num ; // Non-Static member 
    // ....
};

foo obj ; // In this case `num` resides on stack. In fact, obj it self resides on stack
foo *temp = new foo;  // In this case `num` resides on heap or in memory location acquired from the free store.

I amn't sure about static members.

link|improve this answer
feedback

Statics go in the same place as globals, which tends to be determined by the compiler, and are created when the program is loaded and persist until the program ends

Non-statics go where-ever you put them (on the stack or the heap)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.