+3 votes
in Class 11 by kratos

What are the actual parameters (actual arguments) and formal parameters (formal arguments)?

1 Answer

+2 votes
by kratos
 
Best answer

1. Actual parameters:

The data that are passed by the calling function as arguments/parameters are known as actual arguments, i.e., the arguments which are present at the time of function call.

2. Formal parameters:

There are the names of the arguments /parameters in the function header of the called function. Formal parameter values are used by the called function body.

...