• CSE207 객체지향 강좌 및 C++ 관련, 누구나 묻고 답하는 게시판 입니다.
  • CSE207 수강생이 아니여도 편안하게 질문하세요.
  • 첨부화일은 이미지 화일 혹은 zip 화일로 업로드 하기를 권합니다.

제목lab 7 4번 질문입니다2019-10-04 23:59
작성자

int main() {
 ifstream file1("text1.txt", ios_base::in | ios_base::binary);
 ifstream file2("text2.txt", ios_base::in | ios_base::binary);
 ofstream file3("output.txt", ios_base::out | ios_base::binary);

 file3 << file1.rdbuf() << endl << endl;
 file3 << file2.rdbuf();

 file1.close();
 file2.close();
 file3.close();
}

이렇게 ios::rdbuf 함수를 사용해도 되나요

댓글