首页 > 其他 > 详细

第13章第2讲文件读写操作

时间:2017-05-21 22:27:47      阅读:338      评论:0      收藏:0      [点我收藏+]

技术分享

技术分享

#include"stdio.h"
main()
{

    FILE *fp;
    if((fp=fopen("c1.txt","rt"))==NULL)
    {   printf("\nCannot open file!");
        getch();exit(1);
    }
    ch=fgetc(fp); 
    while(ch!=EOF) 
    {
        putchar(ch);                                
        ch=fgetc(fp);
    }
    fclose(fp); 

}

技术分享

#include"stdio.h"
main()
{

    FILE *fp;
    char ch;
    if((fp=fopen("c2.txt",“wt"))==NULL)
    {   printf("\nCannot open file!");
        getch();exit(1);
    }
    ch=getchar(); 
    while (ch!=\n) 
    {   fputc(ch,fp); 
        ch=getchar();
    }
    fclose(fp); 


}

技术分享

#include"stdio.h"
main()
{

    FILE *fp;
    char str[11];
    if((fp=fopen("c2.txt","rt"))==NULL)
    {   printf("\nCannot open file!");
        getch();
        exit(1);
    }
    fgets(str,4,fp);            
    printf("%s\n",str); 
    fclose(fp);

}

技术分享

#include"stdio.h"
main() { FILE
*fp; char st[20]; if((fp=fopen("c2.txt",“at+"))==NULL) { printf("\nCannot open file!"); getch(); exit(1); } gets(st); fputs(st,fp); fclose(fp); }

技术分享

技术分享

 

第13章第2讲文件读写操作

原文:http://www.cnblogs.com/gaiyin/p/6886274.html

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