Answer:
The correct option to the following question is an option (b).
Step-by-step explanation:
A function parameter is an argument that is written inside the function's parentheses'()' in which we pass the value which is known as an argument.
For example:
function_name(int a)
{
//code or body of the function
}
Here, 'function_name' is the name of the function and brackets '()' are the parentheses'()' and inside the parentheses 'int a' is the argument.