#define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #define MAX_LIST_SIZE 100 typedef int element; typedef struct { element array[MAX_LIST_SIZE]; int size; }ArrayListType; void init(ArrayListType* L) { L->size = 0; } int is_empty(ArrayListType* L) { return L->size == 0; } int is_full(ArrayListType* L) { return L->size == MAX_LIST_SIZE; } void print_list(ArrayListType* L)..