LINKED LIST IMPLEMENTATION OF SINGLY LINKED LIST
Aim:
To write a program to implement singly
linked list using linked list.
Algorithm:
Step 1: initialize the list as null
Step 2: Display linked list operations
insert, delete and display the result.
Step 3: If choice is 1 the read element to be
inserted and call the insert function
Step 4: If choice is 2 then read element to
be deleted and call the delete function
Step 5: If choice is 3 then call display
function
Step 6: If choice is default the exit the
program.
Prog Code: