【文件属性】:
文件名称:课程设计——通讯录的制作.doc
文件大小:49KB
文件格式:DOC
更新时间:2018-02-03 10:42:54
代码
课程设计——通讯录的制作#include
#include
#include
#define LEN sizeof(list)
//读取数据
typedef struct teacher
{
int n;
char name[20];//姓名(name )
char city[20];//城市(city)
char phone[20];//电话(phone)
char qq[20];//QQ号(qq)
struct teacher * next;
}list,*link;
//写入信息
void scanfdata(link *p0)
{
printf("名字: ");
gets((*p0)->name);
printf("城市: ");
gets((*p0)->city);
printf("电话: ");
gets((*p0)->phone);
printf("QQ号: ");
gets((*p0)->qq);
printf("\n");
}