Create an application to keep track of a list of students and their grades in a data structures course using a link list. You should use the C++ STL library. You need to create a class called student that contains 2 data members: name and grade and then create a link list of objects of this class. The application should allow the user to add a student, remove a student, update the grade for a student, and search for a student.
Please fix the following input errors: