#include #include "bstring.h" using namespace std; int main() { BString s1; // test the default constructor BString s2("Hello"); // test the c-string constructor cout << "s1 = " << s1 << '\n'; // expecting empty string cout << "s2 = " << s2 << '\n'; // expecting "Hello" }