首页 > 编程语言 > 详细

学习C/C++语言:文件的操作

时间:2014-05-14 21:37:24      阅读:347      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<stdlib.h>
void main(int argc,char *argv[])
{
	FILE *in,*out;
	if(argc!=3)
	{
		printf("you forgot to enter a file name\n");
		exit(0);
	}
	if((in=fopen(argv[1],"r"))==NULL)
	{
		printf("cannot open inflie\n");
		exit(0);
	}
	if((out=fopen(argv[2],"w"))==NULL)
	{
		printf("cannot open inflie\n");
		exit(0);
	}
	while(!feof(in))
		fputc(fgetc(in),out);
	fclose(in);
	fclose(out);
}


doc:

 c:\>  copy.exe in.txt out.txt

学习C/C++语言:文件的操作,布布扣,bubuko.com

学习C/C++语言:文件的操作

原文:http://blog.csdn.net/williamfan21c/article/details/25819995

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!