Problem
Does anyone knows how to write a singly dynamic linked list for student date?
It should have a menu driven screen with: Create a linked list, Add a node, Delete a node, Modify, Search, Display, Purge, Exit. No function should work unless a linked list is created. After linked list is created, any program selected by the user must work.
The user must not asked where to add (puts the data at front, middle, in between or end), delete (should delete from front, middle, in between and end, but must not show) from throughout the program.
The program should accept student data: Student full name, GPA, id number.
If the linked list is not creating, all function should print a message prompting the user to create the linked list first before beginning. After the list is create any function called should print a message: Linked list is empty except for "Add".