The scope of a global static variable can be extended beyond the file in which it is declared.
查看答案
Variables created inside a function are ____ variables.
A. recursive
B. public
C. local
D. global
A variable with a ____ scope is simply one that has had storage locations set aside for it by a declaration statement made within a function body.
A. function
B. module
C. local
D. global
A ____ variable is one whose storage has been created for it by a declaration statement located outside any function
A. local
B. global
C. module
D. function
The variable secnum is ____. int main() { int secnum; . . . }
A. local to main()
B. global to main()
C. local to the program
D. global to the program