用C语言实现的通讯录源代码 时间:2012-06-08 02:17:29 【文件属性】: 文件名称:用C语言实现的通讯录源代码 文件大小:6KB 文件格式:TXT 更新时间:2012-06-08 02:17:29 通讯录 C 源代码 用c 语言编写的通讯录源代码 #include #include /*与malloc.h差不多*/ #include #define maxlen 100 struct persons { char name[10]; /*定义结构体数组用于缓存数据*/ char addr[20]; char phnum[10]; }persons[maxlen]; 立即下载