Create a program that prompts for a student’s first name, last name, age and overall mark. The program that displays the grade for the students. The program contains a nested struct and a function to display the student’s information. 1. Create a struct called GradeRec which has two variables, percent and grade. 2. Create another struct called StudentRec which contains variables lastName, firstName, age and courseGrade (nested from GradeRec ). 3. Create a function Print() to display all the values for the variables. 4. In the main function, create an object for struct StudentRec. Prompt for student’s first name, last name, age and overall mark. Display grade base on the following:
c++ program