星期三, 5月 30, 2018

[Code] 清除文字檔內容 C 與 C++

C語言版本

   fclose(fopen("file.txt", "w"));

C++語言版本

std::ofstream ofs;
ofs.open("test.txt", std::ofstream::out | std::ofstream::trunc);
ofs.close();

沒有留言: