'2009/07/04'에 해당되는 글 1건

  1. 2009.07.04 ofstream으로 파일 출력 2
#include <fstream>
using namespace std;

ofstream out("c:\\ou.txt",ios_base::out | ios_base::app);
out << std::endl;
out << "===find call-k and put-k test====" << std::endl;
out.close();

Posted by Gu Youn
,