Pass And No Return
In Pass and no return, value(s) are passed from the calling function to the called function but, no value is returned back from the called function to the calling function.
* Any number of arguments can be passed to a function
* Any data type of arguments can be passed to a function
* Number of arguments passed while calling a function should be same as number of arguments being received in the function definition.
* Data types of arguments passed while calling a function should be same as data types of arguments being received in the function definition.