创建小通讯录

Contact 1、exe.c 测试 2、contact.c 实现函数的功能 3、contact.h 声明函数
存放好友信息: 1.姓名 2.地址 3.电话
功能: 1、增加好友信息 2、删除指定名字的好友信息 3、查找好友信息 4、保存好友信息 5、显示好友信息
#include
#include
#include
#include #define max 10
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成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/10669.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>