본문 바로가기
카테고리 없음

파일 입출력

by ByteBridge 2013. 3. 16.
반응형


int _tmain(int argc, _TCHAR* argv[])

{


//파일 쓰기

ofstream output;

output.open("test.txt");


output<<"프로그래밍"<<endl;

output.close();


//파일 읽어오기

ifstream input;

char msg[200];

input.open("test.txt");


input>>msg;

cout<<msg<<endl;

input.close();

return 0;

}


반응형