InterviewSolution
Saved Bookmarks
| 1. |
What are the actual parameters (actual arguments) and formal parameters (formal arguments)? |
|
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. |
|