main 函数垃圾清理
This commit is contained in:
Jdhggg 2025-03-18 21:39:41 +08:00
parent 1518ede089
commit f28d7fc8f2
6 changed files with 6 additions and 3 deletions

View File

@ -1,2 +1,6 @@
 linked_list_stack.c
main.c
sq_list.c
正在生成代码...
C:\code\lencode\Project2\sq_list.c(10,1): warning C4716: “init_sq_list”: 必须返回一个值
Project2.vcxproj -> C:\code\lencode\Project2\Debug\Project2.exe

5
main.c
View File

@ -7,9 +7,8 @@ int main(void)
{
list->length = 6;
insert_sq_list(list, 3, 666);
print_sq_list(list);
printf("Hello World!\n");
return 0;
}