好吧...我是c新手。我有个问题。我有2个结构。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=node 和 mhs=array of struct 我想创建一个基于节点的文件。因此,如果我有 3 个节点,那么我将编写 3 个不同的文件,其中包含 mhs,我还想让 node->kls 作为名称文件。那可能吗?如果是,我该怎么做?感谢您的提前。