求大哥大姐,C 链表写入文件和读取

# include

 

struct student

{

   int age;

   char name[50];

   struct student * next;

};

int main(void)

{

    return 0;

}

 

给一小段代码就好,文件写入和读出,拜托了

你可能感兴趣的:(求大哥大姐,C 链表写入文件和读取)