From 5e940a6f4dff894aee0a239a3b34c1b0ba020cbe Mon Sep 17 00:00:00 2001 From: root Date: Tue, 12 Dec 2023 13:10:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BA=86=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E4=BD=93=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- practice_test/main.c | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/practice_test/main.c b/practice_test/main.c index cf4b4a9..8af2360 100644 --- a/practice_test/main.c +++ b/practice_test/main.c @@ -1,14 +1,21 @@ #include -sturct Contact +#include + +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; }