a programming of c++
Answers
Answered by
1
Answer:
C++ is a cross-platform language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ gives programmers a high level of control over system resources and memory.
Paradigms: Object-oriented programming
Designed by: Bjarne Stroustrup
Answered by
1
class mystring {
private:
char* c;
int lnth, capacity;
public:
mystring();
mystring(const mystring& s);
mystring& operator=(const mystring& rhs);
bool append(char x);
};
hopefully its helped u dear:)
Similar questions