码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 文件写例子

时间:2014-11-01 23:14:37      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   sp   文件   on   2014   log   

#include <iostream>
#include <sstream>
#include <fstream>>

using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
 ofstream myfile;
 myfile.open("example.txt");	
 myfile <<"write test";
 myfile.close();
	return 0;
}

c++ 文件写例子

标签:blog   io   os   ar   sp   文件   on   2014   log   

原文地址:http://blog.csdn.net/drivermonkey/article/details/40688219

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!