suppose that MyClass has methods with the following prototypes:
void method1(MyClass & object1);
MyClass * method 7();
What will be this method destructor, constructor, copy constructor, overloaded= or default constructor?
This is one of question in my homework.
I think the first one is default constructor and second one is copy constructor but not sure about it. I know that these methods are not destructor for sure so need help with this.