Item item = new ItemInfo; cout << "The item's price is " << item->getPrice() << endl; cout << "The item's color is " << item->getColor() << endl;is a client of the ItemInfo class.
Item item = new ItemInfo; cout << "The item's price is " << item->price << endl; cout << "The item's color is " << item->color << endl;
A: