【文件属性】:
文件名称:通信录管理程序(升级版)
文件大小:7KB
文件格式:CPP
更新时间:2015-07-01 13:56:54
通信录管理程序(升级版)通信录管理 C代码 控制台
升级前的程序:http://download.csdn.net/detail/wennfengg/436458
下面是前n行代码:
#include
#include
#include
struct person
{
char name[20];
char phone[20];
char address[50];
};
struct person_link
{
char name[20];
char phone[20];
char address[50];
struct person_link *next;
}*head=NULL;
FILE *fp;
void slow2() //减速。使程序运行速度减慢,以达到特殊效果。
{
int i;
for(i=0;i<100000000;i++)
{
}
return;
}
void slow() //减速。减速程度比slow2大。
{
int i;
for(i=0;i<500000000;i++)
{
}
return;
}
void read_tonxinlu() //读取文件"tonxinlu"中的数据,以建立链表
{
struct person information;
struct person_link *news,*t=NULL;
if((fp=fopen("通信录","ab+"))==NULL)
{
printf("打开通信录失败");
exit(0);