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

Posted 该☆隐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第13章第2讲文件读写操作相关的知识,希望对你有一定的参考价值。

#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讲文件读写操作的主要内容,如果未能解决你的问题,请参考以下文章

第1章第2讲常见编译错误与调试

第6章第2讲循环嵌套结构

第7章第2讲字符数组

第2章第1讲数据类型及常量变量

第8章第2讲特殊函数介绍

第4章第1讲简单语句分析