// Testing the CString class. #include #include "cstring.h" int main() { CString s( "Howdy" ); cout << "The string is: " << s << endl; cout << "The string's length is: " << s.Length() << endl; return( 0 ); }