首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
刘京佂的代码贴
→
全部
[C语言]通讯录管理
/*通讯录管理*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define M 50//记录最大值
int Menu_select();
typedef struct ElemType{
char name[20];
char tel[15];
char email[20];
char ad[15];
}ElemType;
......................
阅读全部
| 2015年4月9日 15:54
[C语言]刘京佂 贴于 2015-04-09 15:49:44
/*通讯录管理*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define M 50//记录最大值
int Menu_select();
typedef struct ElemType{
char name[20];
char tel[15];
char email[20];
char ad[15];
}ElemType;
......................
阅读全部
| 2015年4月9日 15:49
1
刘京佂
全部(2)
C语言(2)