/*---main.c file---*/ #include // printf() //#include // getch() #include "list.h" // NodeDisplay(), LIST_T int main(void) { LIST_T pList = { .head = NULL }; /* Allocate & Insert a node into the list. */ NodeCreate(&pList, 100); NodeDisplay(pList.head); // getch(); return(0); }