Can anyone help me? Do this below output
Create a Student Registration program using c++. Directions: Make a class named studentInfo with data member to accepts user inputs such as Firstname,Lastname, Middlelnitial, Birthdate,Address, Course. Create another class named deptinfo with data member that accepts user inputs such as Department Name, Department Dean, Total Subjects. Create another class named student which inherits both the above classes. Now create a data member calling the function/data member inside the classes above and create another data member that print the summarized data of student. EXPECTED OUTPUT: ******STUDENT'S INFORMATION****** ---BASIC INFORMATION--- Firstname: Carlo Lastname: De Silva Middle Initial: P Birthdate: July 13, 1999 Address: Malinao Ilaya Course: BSIT ---DEPARTMENT INFORMATION--- Department Name: Department of Information Technology Department Dean: Kyle Larson Total Subjects: 8 *****************************