(C++) 3장. 파일입출력 및 키보드 입력.
**키보드 입력과 출력
필요 라이브러리헤더: iostream(입출력 클래스)
네임스페이스: std(표준 라이브러리)
**파일 입출력
필요라이브러리: fstream(파일클래스)
네임스페이스: std(표준 라이브러리)
파일 입출력 예제)
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string str="파일에 씁시다.";
ofstream ofs("file.txt");
ofs<<str;
ofs.close();
ifstream ifs("file.txt");
ifs>>str;
cout<<str<<endl;
ifs.close();
}
출처: 모던 C++프로그래밍 (프리렉 출판사)
필요 라이브러리헤더: iostream(입출력 클래스)
네임스페이스: std(표준 라이브러리)
**파일 입출력
필요라이브러리: fstream(파일클래스)
네임스페이스: std(표준 라이브러리)
파일 입출력 예제)
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string str="파일에 씁시다.";
ofstream ofs("file.txt");
ofs<<str;
ofs.close();
ifstream ifs("file.txt");
ifs>>str;
cout<<str<<endl;
ifs.close();
}
출처: 모던 C++프로그래밍 (프리렉 출판사)
댓글
댓글 쓰기