You enclose a function's statements in a set of braces
The function header is considered a C++ statement, so it must end in a semicolon
The keyword void tells the C++ compiler that the function does not return a value
A function can receive information that you send (pass) to it E. An empty set of parentheses after the function's name in the function header tells you that the function does not receive any information
Answer is Wrong!
Answer is Right!
The correct answer is: B. The function header is considered a C++ statement, so it must end in a semicolon.
A function header is a declaration of a function. It tells the compiler the name of the function, the type of data it returns, and the types of data it takes as arguments. The function header is not a statement, so it does not need to end in a semicolon.