Introduction - If you have any usage issues, please Google them yourself
3. Write a program: Define a Person class requirements: ① private member data: ● char ID [20] // ID number ● char* name // store name starting address dynamic character array ● char* address // store address the dynamic character array starting address ② public member functions: ● Person (char* n = 0, char* na = 0, char* ad = 0) // constructor ● Person (Person & p) // copy constructor, to achieve deep copy ● ~ Person () // destructor ● Person & operator = (Person & p) // achieve deep assignment ● void show () // output data ③ members write main ( ) function of the Person class to be tested.