Question: Have to write a C++ program: Create a C++ struct to include the following data fields using appropriate data types: - Student ID; - Student
Have to write a C++ program:
Create a C++ struct to include the following data fields using appropriate data types: - Student ID; - Student First Name: - Student Last Name; - DoB; - Student Email address; Create a link list using pointers so that the link list looks like the following diagram:

You must be able to do the following: -Add a new node to the end of the list. - Search the list by student last name, and return/print the students information.
Use pointers, a function to add a new node, a function to search, and a function to display student information. You must have the necessary code to allow the user to enter the new student information via the keyboard.
Student ID First Name LastName DoB Emai StudentID FirstName LastName DoB Emai den FirstName Last Name DoB Emai null Student ID First Name LastName DoB Emai
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
