Question: C++ Can someone please implement the constructor function String(const char*); using namespace std; class String { int size; char * buffer; public: String(); String(const String
C++

Can someone please implement the constructor function String(const char*);
using namespace std; class String { int size; char * buffer; public: String(); String(const String &); String (const char *); String(); //other methods friend bool operator ==(const String &, const String &); friend bool operator
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
