065.结构体-结构体指针
#include <iostream> using namespace std; //结构体指针 //定义学生结构体 struct Student { //姓名 string name; //年龄 int age; //分数 int score; }; int main() { //1.创建学生结构体变量 Student s = { "张三" ,18,50 }; //2.通过指针指向结构体变量 Student* p = &s; //3.通过指针访问结构体变量的数据 cout << "姓名:" << p->name << "年龄:" << p->age << "分数:" << p->score << endl; system("pause"); return 0; }