Syntax
return (expression)?
Purpose
The explicit way to return a function to its caller. return can return anywhere in the function definition. The form of return depends on the result type defined for the function as specified at the start of the function.
|