用c 语言编写的通讯录源代码 #include #include /*与malloc.h差不多*/ #include #define maxlen 100 struct persons { char name[10]; /*定义结构体数组用于缓存数据*/ char addr[20]; char phnum[10]; }persons[maxlen];