- generate object files (e.g. Linked List Stack)
gcc -c linked_list_stack.c -o linked_list_stack.o
gcc -c singly_linked_list.c -o singly_linked_list.o
- link files and generate executable file
gcc linked_list_stack.o ../LinkedList/singly_linked_list.o -o program
- Singly Linked List
- Doubly Linked List
- Circular Linked List
- Array Stack
- Linked List Stack