Define the Meaning of Call by reference?
In "call-by- reference", as an alternative of passing the value of a variable, the location number (or the address) of the variable is passed to a function and This will become "call-by-reference" It is a way to pass address (reference) of variables to a function that then allows the body of the function to make changes to the value of the variables in the calling environment.