Update 栈的初始化.c

This commit is contained in:
ViolentAyang
2022-03-19 21:06:52 +08:00
committed by GitHub
parent a31492b8d1
commit 664824c32e

View File

@@ -23,5 +23,6 @@ bool StackEmpty(SqStack s){
int main(){
SqStack S;
InitStack(&S);
printf("%d",StackEmpty(S));
return 0;
}