Function Declaration/Prototype Syntax:
returnType functionName(parameterList);
where:
returnType - data type of value to be returned by the function
functionName - a unique identifier of the function
parameterList - list of input variables with data type and separated by commas. It is sometimes called formal arguments.