Syntax and Semantics of
void Functions
A function call in a program results in the
execution of the body of the called function.
Syntax Template
FunctionCall (to a void function)
     FunctionName ( ArgumentList );
The parentheses are required even if the argument
list is empty. Multiple arguments must be
separated by commas.
ArgumentList
Expression , Expression …