结构体指针
**作用:**通过指针访问结构体中的成员。
利用操作符->可以通过结构体指针访问结构体属性。
cpp
struct student()
{
string name;
int age;
int score;
}
int main()
{
student s = {"张三",18,100};
struct *p = &s;
cout << "姓名:" << p->name << "年龄:" << p->age << "分数:" << p->score << endl;
}