#include
#include
using namespace std;
int main()
{
char str[12];
ifstream ifile;
ifile.open("test", ios::out);
if (!ifile)
{
cerr << "Can't open test file." << endl;
system("pause");
return 0;
}
ifile >> str;
cout << str << endl;
ifile.close();
system("pause");
return 1;
}
为什么总是出现这样的情况.......那个test文件真的不用写后缀吗?