我正在尝试编写一个简单的程序来写入已经存在的文件。我收到此错误:
hello2.txt: file not recognized: File truncated
collect2: ld returned 1 exit status
我究竟做错了什么?(我尝试了两种方式的斜线,但我仍然得到同样的错误。)
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ofstream outStream;
outStream.open(hello3.txt);
outStream<<"testing";
outStream.close;
return 0;
}