Information is passed back from the function via reference
parameters in the parameter-list. A parameter is declared to be
a reference parameter by appending & to its type. In this case the
address of the actual parameter is passed to the function and the
function uses this address to access the actual parameter value and can
change the value. Hence information can be passed back to the calling
program.