Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions