#include
#include
using namespace std;
int main()
{
ofstream outf("test.dat");
char p[]="I am a student";
outf<
outf.close();
ifstream inf("test.dat");
inf>>p;
cout<<p<<endl;
return 0;
}
为什么输出结果只有一个I?不应该输出I am a student吗?求大神指教