Distinguish between reference and value parameters?

How are reference and value parameters distinguished syntactically? How would the execution of a program change by changing a parameter from value to reference?
When you pass by value, a copy of the object is passed to the function.
References are aliases for the original objects.
Topic archived. No new replies allowed.