其他分享
首页 > 其他分享> > 文件操作

文件操作

作者:互联网

打开文件关闭文件

文件分为:二进制(dat)和文本文件(txt);

代码:

#include<stdio.h>
#include<stdlib.h>
{
    FILE *fp;
    if ((fp=fopen("地址&名字","方式"))==NULL)
    {
        printf("cannot open file\n"); exit(0);
    }
    fclose(fp);
    return 0;
} 
    

方式:

 

 

文件的输入输出

 

代码:

 

fprintf(fp2,"%.2f",av);

 

fscanf(fp2,"%.2f",av);

 

 

int st,a,i = 0,j;
while(fscanf(fp1,"%d",&st)==1)
{
}

fwrite(&student,sizeof(student),1,fp1);

fread(&student,sizeof(student),1,fp1);

 

rewind(fp)//回到首地址。

 

标签:fp,文件,%.,fp1,student,av,操作
来源: https://www.cnblogs.com/xxj112/p/16250409.html