#include #include using namespace std; class Student{ int age; public: char *name; Student(Student const &s){ this->age = s.age; /// this->name = s.name; /// shallow copy /// deep copy this->name = new char[strlen(s.name) + 1]; strcpy(this->name, s.name); } Student(int age, char *name){ this->age = age; /// this->name = name; shallow copy /// Deep copy this->name = new char[strlen(name) + 1]; strcpy(this->name,name); } void display(){ cout<