Function Declaration
nFunction declaration is also referred as function signature (or prototype).
nThe function signature specifies the interface between the function writer and the function user.
nSyntax:
nreturn_type function_name(para1, para2, … , paraN);