C++の中でテキストファイルを簡単に読み書きする方法


コードは以下の通りです。

#include "stdafx.h"
#include <iostream>
#include <fstream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
 //
 ofstream ofs;  //
 ofs.open("d:\\com.txt",ios::trunc); //trunc , ,
 int i;
 char a = 'a';
 for(i = 1; i != 27; ++i)
 {
  if(i < 10)
  {
   ofs << "0" << i << "\t" << a << "
";
   a ++;
  }
  else
  {
   ofs << i << "\t" << a << "
";
   a ++;
  }
 }
 ofs.close();
 //
 char buffer[256];
 ifstream ifs; //
 ifs.open("d:\\com.txt",ios::in);//in--
 cout << "d:\\com.txt" << " :" << endl;
 while(!ifs.eof())  // stream
 {
  ifs.getline(buffer, 256, '
'); // 256
  cout << buffer << endl;
 }
 ifs.close();
}