#include <QTextStream>
#include <QString>

int main() {
    const char* charstr = "this is one very long string "
                " so I will continue it on the next line";
    QTextStream cout(stdout);  
    QString str = charstr; /* c-style strings can be converted to QString */
    cout << str << endl;
    cout << "\nA\tb\\c\'d\"" << endl;
    return 0;
}

