#ifndef MYSTRING_H #define MYSTRING_H #include #include using namespace std ; class mystring { private: char* ptr ; public: mystring( const char* str1 ) ; ~mystring() ; void print() ; }; #endif