The purpose of a ____ is to operate on the passed data and through return statement, at most, one value directly back to the calling function.
A. function header
B. prototype
C. function body
D. function declaration
查看答案
A ____ is the beginning of a final function that is used as a placeholder for the final function until the function is completed.
A. function header
B. stub
C. prototype
D. calling function
To return a value, a function can use a(n) ____ statement.
A. exit
B. throw
C. break
D. return
The minimum requirement of a ____ is that it compile and link with its calling module.
A. function body
B. function prototype
C. stub function
D. function header
Terms used as synonyms for arguments are formal arguments and actural parameters.