创建小通讯录
Contact 1、exe.c 测试 2、contact.c 实现函数的功能 3、contact.h 声明函数
存放好友信息: 1.姓名 2.地址 3.电话
功能: 1、增加好友信息 2、删除指定名字的好友信息 3、查找好友信息 4、保存好友信息 5、显示好友信息
#include
#include
#include
#include
struct people
{
char name[10];
char add[20];
char tel[10];
};
struct Contact
{
struct people peo[max];
int size;
};
void InitContact(struct Contact* con)
{
memset(con->peo,0,sizeof(con->peo));
con->size=0;
}
void AddContact(st
创建小通讯录最先出现在Python成神之路。
共有 0 条评论