Question 10
Assuming the following declaration: struct Student {
double gpa;
string address;
string year;
string fullName;
int birthYear;
};
int main() {
int x = 100;
Student jane = {4.0, "San Ramon, CA", "Freshman", "Jane Doe"};
You can use the following statement to print all of jane's attributes:
cout << jane << endl;
True
False