what are the three steps using a function
Answers
Answered by
3
A function call is an expression: As long as it returns a value other than void, it can be used inside a larger expression. For example: z = x + y + avg(a, b) + 25.3; When the function is called, the values specifiedin the function call are passed to the function arguments.
Similar questions