The file List.c has implementation of the List Data Structure.
- List.c
- ListTest.c
- Lex.c
- README.md
- Makefile
$ make clean
This command will make the repository clean by deleting the object file and executable file of ListTest.c, Lex.c, and List.c.
$ make
This command will just compile other C files and make the executable and object file for ListTest.c and Lex.c.
$ make
- This command will just compile and make the executable and object file for ListTest.c and Lex.c.
$ ./ListTest
- This command will run the ListTest file and show the output of List ADT functions.
$ ./Lex <input file> <output file>
- This command will run Lex.c and it takes 2 arguments.