From 664824c32ec03554cb4661bd9a3115d8c036895b Mon Sep 17 00:00:00 2001 From: ViolentAyang <76544389+ViolentAyang@users.noreply.github.com> Date: Sat, 19 Mar 2022 21:06:52 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E6=A0=88=E7=9A=84=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 栈/栈的初始化.c | 1 + 1 file changed, 1 insertion(+) diff --git a/栈/栈的初始化.c b/栈/栈的初始化.c index ed1335e..28c5b5a 100644 --- a/栈/栈的初始化.c +++ b/栈/栈的初始化.c @@ -23,5 +23,6 @@ bool StackEmpty(SqStack s){ int main(){ SqStack S; InitStack(&S); + printf("%d",StackEmpty(S)); return 0; }