c语言项目通讯录管理系统.docx
#include #include #include #include #include struct Info { char name[15];/*姓名*/ char city[10];/*城市*/ char province[10];/*省*/ char state[10];/*国家*/ char tel[15];/*电话*/ }; typedef struct node/*定义通讯录链表的结点结构*/ { struct Info data; struct node *next;
下载地址
用户评论