Problem Statement: Suppose you are asked to make a Ranking information chart of students in a dynamic list called linked list using C++ language. The data will be stored in this list in order i.e. the highest marks student will be on top position with other information whereas the next highest marks student will be on second top position and so on. Your program will get the information of a student in the form of input (Student ID, Name, Marks) through the console. After filling in the required information, the student will be inserted into the linked list at the right place. The right place for students will be decided on the basis of marks.
Furthermore, you are required to use only classes for this assignment. As we are not covering Struct in this course so using it in assignment solutions is not allowed.