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
相關文章
相關標籤/搜索