#ElementsOfUserDefinedFunctions #functionsincprogramming #partsofuserdefinedfunctions
Elements Of User Defined Functions:- Any user defined function contains 3 elements.
1.Function declaration
2.Function definition
3.Function call
Calling function:-A function which is calling another function.
Called function:-A function which is called.
Actual Parameters:-The parameters which are declared in calling function
Formal Parameters:-The parameters which are declared in called function
return statement:-It is used to return a value from called function to calling function.