数据驱动、坚持为客户提供有价值的服务和内容
链表文件写入与读出,代码示例一:
#includestdio.hstruct student{ int number; char name; struct student*next;};void save();void print();int main(){ struct student *head=(struct student *)malloc(sizeof(struct student)) ; head-number=2; head-name='a'; s