通讯录源代码
摘要:#include"stdio.h"#include"stdlib.h"#include"string.h"typedefstructContent//........................................结构体{charname[20];longnumber;chardress[100];structContent*next;}ML;//ML*head=NULL;ML*Found(){ML*p;p=(ML*)malloc(sizeof(ML));//指针申请空间if(p==NULL){printf("创建失败!!!");exit(0);}p->name;p->number=0;p->dress;p->next=NULL;returnp;}voidImput(ML*head)//......................................联系人增添{ML*p=Found();p->next=head->next;head->next=p;printf("\n请输入联系人姓名:");getchar();gets(p->name);printf("\n请输入电话号码::");scanf("%ld",&p->number);printf("\n请输入联系人地址:");getchar();gets(p->dress);}voidRevise(ML*head)//.........................................修改{chars[10];intch;longnu;ML*p=Found();p
温馨提示:当前文档最多只能预览
5 页,若文档总页数超出了
5 页,请下载原文档以浏览全部内容。
本文档由 匿名用户 于 2022-09-28 23:50:15上传分享