Bootstrap

C语言读取文档的结构体

把结构体内容写入.txt文件中

//write.c
#include <stdio.h>

struct test{
   
        int a;
        float b;
};

int main()
{
   
        struct test v = {
   1, 2.3};
        FILE *fp;
        fp = fopen("save.txt", "w");
        if(fp == NULL)return -1;
        fprintf(fp, "%d %f", v.a, v.b);
        fclose(fp);

        return 0;

}

fprintf函数可以把数据以可读的形式写入到文件中,最后写出

;