C_DS_AIgo/main.c

16 lines
228 B
C
Raw Normal View History

2025-03-17 14:00:57 +08:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "sq_list.h"
int main(void)
{
2025-03-18 21:38:08 +08:00
2025-03-17 14:33:15 +08:00
list->length = 6;
2025-03-17 16:27:15 +08:00
insert_sq_list(list, 3, 666);
2025-03-17 14:33:15 +08:00
print_sq_list(list);
2025-03-17 14:00:57 +08:00
printf("Hello World!\n");
return 0;
2025-03-17 14:33:15 +08:00
}