CS202 6- ‹#›
Copy Constructors
nUsing the reference operator instead, we change the function to be: (the function call remains the same)
n
nname &function(name &obj) {
n  cout <<obj.get_name() <<endl;
n  return (obj);
n}
n