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
The method for adjusting the random numbers produced by a random-number generator to reside within a specified range is called ____.
A. scaling
B. stubbing
C. prototyping
D. converting
___ is an example of a calling statement.
A. float roi(int, double);
B. printf("%f", roi(3, amt));
C. float roi( int yrs, double rate);
D. float roi( int yrs, double rate)