Copy constructor doubt

I dint properly understood that why the copy constructor in class takes REFERENCE as an input parameter ??

hello @coderajay03
It would be infinitely recursive if you passed it in by value. Because copy constructor will call itself to create a copy every time and this would run infinitely

okay got it bhaiya !!