This is a menu-driven program of singly linked list. This program also makes use of clearScreen() function to make it more user-friendly.
This program consists of various operations that can be performed on a singly linked list, like:
- Inserting a node at the beginning
- Inserting a node at the end
- Inserting a node after the specified location.
- Deleting a node with specific value.
- Deleting a node from the beginning.
- Deleting a node from the end.