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
Coding a function prototype as ____ makes sense when the function is used by a number of other functions in a source code file.
A. private
B. global
C. local
D. void
A function that is called or summoned into action by its reference in another function is a ____.
A. function prototype
B. called function
C. calling function
D. function declaration
A function that calls another function is referred to as the ____.
A. function prototype
B. called function
C. calling function
D. function declaration