반응형
int _tmain(int argc, _TCHAR* argv[])
{
ifstream input;//입력 파일 객체
char word[50]={0,};
input.open("test.txt");
//eof 는 파일의 끝을 의미한다. 파일의 마지막이 아니면 false 를 반환,마지막이면 true 를반환
if (input.eof()==false)
{
input>>word;
cout<<word<<endl;
}
input.close();
return 0;
}
반응형