Write a class studentInfo that represents a student record. It must have variables to store the s...
write a CPP program using template class
Write a class studentInfo that represents a student record. It must have variables to store the student ID, student's name and student's CGPA. It also must have a function to print all the values. You will also need to overload a few operators. Create a list of objects of class studentInfo. Insert 5 student records . . 15234 Jon 2.6 13732 Tyrion 3.9 13569 Sandor 1.2 15467 Ramsey 2 3.1 16285 Arya 3.1 . Delete the record with ID 15467 Retrieve the record with ID 13569 and print whether found or not along with the entire record Print the list . Item is found 13569. Sandor, 1.2 15234, Jon, 2..6 13732, Tyrion, 3.9 13569, Sandor, 1.2 16285, Arya, 3.1 ate Windows
Solved
COMPUTER SCIENCE
1 Answer
rahul verma
Login to view answer.