22 lines
329 B
C
22 lines
329 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
struct Contact
|
|
{
|
|
char name[10];//名字
|
|
char sex[10];//性别
|
|
char email[20];//电子邮箱
|
|
unsigned long long pone;//电话号码
|
|
struct Contact *next;//下一个联系人结构体
|
|
};
|
|
|
|
void add_contact()
|
|
{
|
|
|
|
}//新增号码
|
|
int main()
|
|
{
|
|
|
|
return 0;
|
|
}
|