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

C语言文件操作(一)

时间:2014-05-12 03:57:13      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:c

实例1:读写字符文件,每次读取一个字符。

#include<stdio.h>

#include <stdlib.h>

int main()

{

   FILE *fpin ;

   FILE *fpout;

   char c;

   fpout=fopen("c:\\dest.txt","wt");

   if((fpin=fopen("c:\\test.txt","rt"))!=NULL)

   {

      c = fgetc(fpin);

      while(c!=EOF)

      {

         fputc(c,fpout);

         c=fgetc(fpin);

      }

   }

   else

   {

       printf("file not exist!");

       exit(1);

    }

   fclose(fpin);

   fclose(fpout);


   return 0;

}


C语言文件操作(一),布布扣,bubuko.com

C语言文件操作(一)

标签:c

原文地址:http://simoniu.blog.51cto.com/2566344/1409136

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