why we use call by reference in the copy constructor?
Copy constructor(call by reference)
hi ashutosh
If an object is passed as value to the Copy Constructor then its copy constructor would call itself, to copy the actual parameter to the formal parameter. Thus an endless chain of call to the copy constructor will be initiated. This process would go on until the system run out of memory.