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