#include #include #include #include // Include Boost C++ libraries #include using namespace boost::filesystem; using namespace std; int main() { string my_str = "This is a string."; cout << my_str << endl; /* my_str = system("pwd"); my_str.append("\b\b\b\b\b\b\b\b extra"); cout << my_str << "a\b\b\b\b\b\b=" << endl; */ path p("."); cout << p << "==" << endl; return 0; }