Possible Duplicate:
Scope vs life of variable in C
What exactly is the difference between the scope and lifetime of a variable in c? What is the scope and lifetime of a variable declared within a block inside a function?
What exactly is the difference between the scope and lifetime of a variable in c? What is the scope and lifetime of a variable declared within a block inside a function? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It depends. Scope represents the blocks of code from which the variable can be accessed, lifetime represents the period from creation to destruction.
In this case, they coincide:
The difference arises in other cases, for example with globals. You declare an |
|||||||||||
|
|
Lets say we have two functions:
In the function |
|||
|
|
|
Lifetime of a variable is directly and only related with scope. Lifetime ends when definition of variable goes out of overall scope which consists of all scopes in hierarchy. If a variable goes out of score after a sub-scope is switched, it may be reswitched. So it's lifetime is not ended. Else if a variable goes out of scope after parent scope is switched it cannot get back. Even if same scope is switched after a while, that variable is redefined and a lifetime starts as new.
Result will be, in order, 5, 1 and 6; |
|||
|
|