C++ Function Parameters
Get acquainted with actual parameters, formal parameters, and the default values of the parameters.
Function parameters #
We can declare the variables inside the function definition as parameters. We specify the list of parameters separated by a comma inside the round brackets. In C++, we have:
- Formal parameters
- Actual parameters
Formal parameters #
Formal parameters are the variables defined in the function definition. ...