C语言链表——电视机管理系统

#include "stdio.h" #include "stdlib.h" //malloc #include "string.h" typedef struct { char no[4]; //4位编号 char name[20]; //品牌 int peace; //价格 }TV; //链表结点的定义: typedef struct LNode { TV da
相关文章
相关标签/搜索