#include #include "BoxCharPtr.hpp" using namespace std; int main() { char greeting[64] = "Wellcome C++ in CE325 course"; Box greetingBox(greeting); char* greeting_copy = greetingBox.get(); cout << greeting_copy << endl; delete greeting_copy; Box msgBox = greetingBox; char* msg = msgBox.get(); cout << msg << endl; delete msg; }