更新了结构体错误

This commit is contained in:
root 2023-12-12 13:10:23 +08:00
parent 5d2f66b2c1
commit 5e940a6f4d

View File

@ -1,14 +1,21 @@
#include <stdio.h>
sturct Contact
#include <stdlib.h>
struct Contact
{
char name[20];//名字
char sex[20];//性别
char name[10];//名字
char sex[10];//性别
char email[20];//电子邮箱
int numble;//电话号码
}
unsigned long long pone;//电话号码
struct Contact *next;//下一个联系人结构体
};
void add_contact()
{
}//新增号码
int main()
{
return 0;
return 0;
}