레이블이 파일인 게시물을 표시합니다. 모든 게시물 표시
레이블이 파일인 게시물을 표시합니다. 모든 게시물 표시

2013년 5월 7일 화요일

[ C++ ] 파일 쓰기 샘플

C++
파일 쓰기 간단 샘플


#include <fstream>

int main()
{
std::ofstream ofs;
ofs.open( "test.txt" );

ofs << "testmessage" << 777 << std::endl;

ofs.close();
return 0;
}

2013년 4월 24일 수요일

[ C++ ] 파일 읽기 샘플


파일읽기 간단 샘플


#include <fstream>
#include <string>
#include <iostream>

using namespace std;

int main( )
{
  ifstream ifs("data.txt");
  string buf;

  while(ifs && getline(ifs, buf)) {
    cout << buf << endl;
  }

  return 0;
}