void foo() {
static int x;
}
void bar() {
static int x;
}
int main() {
foo();
bar();
}
|
|
|||||||
|
|
They each see only their own one. A variable cannot be "seen" from outside the scope that it's declared in. If, on the other hand, you did this:
then |
|||||||||||||||
|
|
The variables are distinct, each function has it's own scope. So although both variables last for the lifetime of the process, they do not interfere with each other. |
|||
|
|
|
This is perfectly fine. In practice the actual name of the variable in the output of the compiler can be thought of as something like |
|||
|
|
|
Nothing happen, both variables have theri scope and mantain their values to call in call |
|||
|
|