我想寫出文件中的引號,但我不知道語法應該如何顯示。使用ofstream將文章引用到文本文件中使用C++編寫
ofstream file("myfile.txt");
if (file.is_open())
{
file << "\n";
file << ""type of file""<< "=" << '\n'; // obviously this is wrong
file << "name = \n";
}
我想要的文本文件看起來像這樣:
「文件類型」=
名=
我怎麼能這樣做?