Function call
Control of the program cannot be transferred to user-defined function unless it is called invoked).Syntax of function call
function_name(argument(1),....argument(n));
In the above example, function call is made using statement add(num1,num2); from main(). This make the control of program jump from that statement to function definition and executes the codes inside that function.
0 comments:
Post a Comment
Dont Forget for Commets