分类目录
DADealiAxy
C语言准备知识:typedef-和-typedef-struct
typedef typedef existing new; typedef 的功能是建立新的数据类型名,比如: typedef int Length; // 数据类型 typedef char *String; // 字符指针 typedef struct tnode *Treeptr; // 指针 typedef int (*PFI) (char *, char *); // 指向函
06-17
2022-06-17
736
数据结构