Function implementation –
return statement
n
Syntax:
return expression;
n
Purpose:
Exit
a function returning the value
of the expression as the function result.
n
n
When the return statement is processed, the
function exists immediately.
n