What you should learn from this project:
- When and why using linked lists vs arrays
- How to build and use linked lists
- Write a function that prints all the elements of a list_t list.
- Write a function that returns the number of elements in a linked list_t list.
- Write a function that adds a new node at the beginning of a list_t list.
- Write a function that adds a new node at the end of a list_t list.
- Write a function that frees a list_t list.
- Derrick Gee - kai-dg