Description: This program is Menu driven program for Creating/deleting items in the Linked List. Primary Inputs: number to be stored in the Linked List and its location Primary Output: Linked List Platform Used: Turbo C++ version 3.0, Borland International Inc. /*program to implement Linked List*/ #include #include #include struct node { int data; struct node ...