Question: int main ( ) { Student s { Yuri , Stage::starter } ; s . printInfo ( ) ; auto pS = std::make

int main()
{
Student s{"Yuri", Stage::starter};
s.printInfo();
auto pS = std::make_unique("Ann", Stage::inbetween);
pS->printInfo();
//had error above having const,so added const in printinfo
Book b{"C++ for dummies", 25.25f};
std::cout << s.addBook(b)<< std::endl;
Book b2{"Advanced C++",35.0f, std::make_shared("C in a nutshell", 20.0f)};
std::cout << s.addBook(b2)<< std::endl;
std::cout << s.listBooks();
std::cout << s.addBook(b)<< std::endl;
s.printInfo();
Student & rS{s};
rS.setStage(Stage::inbetween);
rS.printInfo();
}how can i change the number of copy constructors

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!