c_cpp 用C读写文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 用C读写文件相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
int main()
{
FILE *f;
int a;
int c;
char b[4];
char d[4];
f = fopen("data", "r");
fscanf(f, "%d %s", &a, b);
fscanf(f, "%d %s", &c, d);
printf("%d %d\n", a, c);
fclose(f);
a = 5;
c = 9;
f = fopen("data", "w");
fprintf(f, "%d %s\n", a, b);
fprintf(f, "%d %s\n", c, d);
fclose(f);
}
以上是关于c_cpp 用C读写文件的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 提升读写ini文件
c_cpp 读写二进制文件的.cpp
c_cpp 读写
c_cpp 在C中读写二进制数据块
c_cpp 用C ++读取文件
c_cpp 用C ++写入文件