1. 首页
  2. 编程语言
  3. C++ 
  4. c语言项目通讯录管理系统.docx

c语言项目通讯录管理系统.docx

上传者: 2020-12-16 23:38:58上传 TXT文件 4.62KB 热度 15次
#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;
下载地址
用户评论