// This program totals and averages the sales figures for any // number of days. The figures are stored in a dynamically // allocated array. #include #include using namespace std; class computer{ public: computer(string * model, string comp){ company = comp; myModel = new string(*model); id = ++nextId; price = DEFAUL_PRICE; } //COPY CONSTRUCTOR: MUST TAKE OWN CLASS OBJECT BY REFERENCE computer(const computer &_c){ cout<<"copy Constructor called "<