更新了结构体错误
This commit is contained in:
parent
5d2f66b2c1
commit
5e940a6f4d
@ -1,14 +1,21 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
sturct Contact
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
struct Contact
|
||||||
{
|
{
|
||||||
char name[20];//名字
|
char name[10];//名字
|
||||||
char sex[20];//性别
|
char sex[10];//性别
|
||||||
char email[20];//电子邮箱
|
char email[20];//电子邮箱
|
||||||
int numble;//电话号码
|
unsigned long long pone;//电话号码
|
||||||
}
|
struct Contact *next;//下一个联系人结构体
|
||||||
|
};
|
||||||
|
|
||||||
|
void add_contact()
|
||||||
|
{
|
||||||
|
|
||||||
|
}//新增号码
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
return 0;
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user