好。。。我是新来的。
我有个问题。我有两个结构。1是链接列表的节点列表,1是链接到节点的结构数组。我就是这样申报的。

    typedef struct mhs mhs;
    typedef struct kelas kelas;

struct mhs
{
    char nama[31];
    char nim[16];
    int angkatan;
    float ipk;
};

struct kelas
{
    char kls[13];
    int jml;
    mhs siswa[40];
    kelas *next;
};

kelas=节点,mhs=结构数组
我想做一个基于节点的文件。所以如果我有3个节点,我会写3个不同的文件,其中包含mhs,我还想使node->kls作为namefile。有可能吗?如果是,我怎么做?谢谢你的预付款。

最佳答案

有点像

#include <stdio.h>


int printNodesToFile(kelas* node) {
    char filename[100] = {0};

    int idx;
    for(idx = 1; node = node->next, idx++; node != NULL) {
        snprintf(filename, sizeof(filename), "kelas.%d.txt", idx);
        FILE* outFile = fopen(filename, "w");
        if(outFile == NULL) return 1;
        //do stuff
        fclose(outFile);
    }
    return 0;
}

10-08 19:43