Qt C++

#include 
#include 
int main() {
    const char* charstr = "this is one very long string";
    QTextStream cout(stdout);  
    QString str = charstr; 
    cout << str << endl;
    cout << "\nA\tb\\c\'d\"" << endl;
    return 0;
}