Ch. 6.2: Defining and Calling Functions Flashcards
1
Q
What is a function call?
A
A function call is a statement that causes a function to execute.
2
Q
What is a function definition?
A
A function definition contains the statements that make up the function.
3
Q
What is a void function?
A
A function that performs one or more functions and then terminates.
4
Q
What is calling a function?
A
A function is executed when it is called. When a function is called, the program branches to that function and executes the statements in its body.