/* ============================================================================ Name : InClass1.c Author : Alex Nelson Version : Copyright : Description : Starter driver file for In-Class Assignment ============================================================================ */ #include #include #include "LinkedList.h" int main(void) { LIST * myList; int i= 0; myList = CreateList(); for(i=0;i<10;i++){ Insert(myList, i, i); } PrintList(myList); DeleteIndex(myList,5); PrintList(myList); DeleteList(myList); myList = NULL; i = 15; return 0; }