14. 原始字符串

创建日期:2024-07-11
更新日期:2025-02-01

rawstring.cpp

#include <iostream>

int main()
{
    using namespace std;
    cout << R"(Jim "King" Tutt uses "\n" instead of endl.)" << '\n';
    cout << R"+*("(Who wouldn't?)", she whispered.)+*" << endl;
}