Question: Write a C/C++ program to implement a singly linear Linked List
Required basic operations :
Part 1: - create a LL
Part 2: - create a node
Part 3:- insert a node
Part 4: - delete any node that you chose
Part 5:- list all the nodes in order
You have to implement a singly link list in C++ language.