$24
Objectives:
Implement basic functionalities using Linked Lists
Question:
Download Lab23.cpp. Write a menu-driven C++ program to implement the following Linked list operations:
node *insertEnd(node *current_head)
Precondition: Prompts the user to enter an integer number.
Post-condition: Insert that number at the end of the list and returns the header node.
void printList(node *head)
Post-condition: Prints the numbers of the list from beginning to the end. It shows a message if the list is