Dynamically allocate memory for struct
This should be what you need:
std::unique_ptr<Student> x(new Student);
Change you definition to
struct Student
{
string firstName, lastName, aNumber;
double GPA;
};
Notice I have changed the placement of the struct keyword
and you have to do Student* student1 = new Student
instead.
When you dynamically allocated memory for a struct you get a pointer to a struct.
Once you are done with the Student you also have to remember to to release the dynamically allocated memory by doing a delete student1
. You can use a std::shared_ptr to manage dynamically allocated memory automatically.