Where do static local variables go

后端 未结 3 1524
后悔当初
后悔当初 2021-02-08 06:05

Where are static local variables stored in memory? Local variables can be accessed only inside the function in which they are declared.

Global static variables go into t

3条回答
  •  遥遥无期
    2021-02-08 06:28

    Static variable is almost similar to global variable and hence the uninitialized static variable is in BSS and the initialized static variable is in data segment.

提交回复
热议问题