Function Declaration
n
Function declaration is also referred as
function
signature
(or
prototype
).
n
The function
signature
specifies the
interface
between the function writer and the function
user.
n
Syntax:
n
return_type function_name(para1, para2, … ,
paraN);