Which of the following is used to terminate the function declaration in C++ ?
In C++, a function declaration must be terminated with a semicolon (;) after the closing parenthesis of the function's parameter list. Function declarations in C++ have the following general syntax:
return_type function_name(parameters...);