Placeholders - for the arguments needed to specify when a function is called
Back
Control returned to the point at which a function is called when the keyword _____ is encountered
Front
return
Back
What happens when a function is called?
Front
A function is executed when it is "called"
Back
What section of a program will you find function prototypes? and what section do they appear before?
Front
Declaration(before the main( ) function)
Back
What is the correct syntax to prototype a function named "myfunction" which returns a float data type and has two float parameters, in order, named "x" and "y"
Front
float myfunction (float x, float y);
Back
What is the syntax to call the function in question 9 with two variables, in order called a and b?
Front
myfunction (a, b);
Back
When do variables cease to exist?
Front
At the next closing brace - {} curly braces
Back
What is meant by parameter list in a function prototype? And what are they enclosed in?
Front
Placeholder for arguments, they are enclosed in parenthesis
Back
The _____ section is optional but recommended and includes such information as author, date, etc.