主题:[讨论]文件格式
#include <iostream.h>
#include <fstream.h>
int main()
{
char *s = "asd\tdadkldm\nzhong\b\vda\n";
cout <<s<<endl;
ofstream fout("output.txt");
fout<<s<<endl;
fout.close();
return 0;
}
使用上面的代码像一个文件输入数据的时候,使用不同的工具打开时候,发现数据不一样,怎么回事呀??到底哪个正确反应了我们的操作呢 ?
#include <fstream.h>
int main()
{
char *s = "asd\tdadkldm\nzhong\b\vda\n";
cout <<s<<endl;
ofstream fout("output.txt");
fout<<s<<endl;
fout.close();
return 0;
}
使用上面的代码像一个文件输入数据的时候,使用不同的工具打开时候,发现数据不一样,怎么回事呀??到底哪个正确反应了我们的操作呢 ?