Student Mark List Program In C++ Using Array

Let’s see Student Mark List Program In C++ Using Array and structures.

Output

Please Enter total number of students : 2
Please Enter the name of student 1 :
fazal
Please Enter total number of subjects : 2
Please Enter marks for subject 1 :
33
Please Enter marks for subject 2 :
44
Please Enter the name of student 2 :
rehman
Please Enter total number of subjects : 2
Please Enter marks for subject 1 :
77
Please Enter marks for subject 2 :
88
Student name : fazal
Marks :
33
44
Student name : rehman
Marks :
77
88