修改了一下:
#include
#include
#include
using namespace std;
int main()
{
string ss = "abcddddd";//C++标准库引入了string类,这样你就可以直接给这个对象赋值了
ofstream ofile;
ofile.open("c:\\a.txt");
if (!ofile)
{
cerr << "Can not open the file." << endl;
return 0;
}
ofile << ss.c_str();
ofile.close();
return 0;
}
void main()
{string a="shu ru zi fu";
}