#include<iostream>//预处理
using namespace std;//命名空间
int main()//主函数
{
struct Student { //自定义结构体变量
int num;//学号
char sex;//性别
int age;//年龄
};
Student stu;//定义Student类型的变量stu
Student* point = &stu;//定义point为指向Student类型数据的指针变量并指向stu
stu.num = 2012;//赋值
stu.age = 26;//赋值
cout << stu.num << endl;//输出学号
cout << stu.age << endl; //输出年龄
cout << "--------" << endl;
cout << (*point).num << endl;//输出学号
cout << (*point).age << endl;//输出年龄
return 0; //函数返回值为0;
}