Question: Write a C++ program that declare a struct called course with the following attributes: int ID; string name; Then create a struct called student that
Write a C++ program that declare a struct called course with the following attributes:
int ID;
string name;
Then create a struct called student that contains the following attributes:
int ID;
string name;
Vector of courses
Write a main program that:
- Declare structure student
- Pass it to a function by reference to fill it in with information
- Pass it to a function to print it out
While filling the student structure, ask the user for the number of courses and fill in the vector accordingly.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
