1.指向结构体的指针的定义
struct Student *p;
2.利用指针访问结构体的成员
1> (*p).成员名称
2> p->成员名称
3.代码
#include <stdio.h> int main()
{
struct Student
{
int no;
int age;
};
// 结构体变量
struct Student stu = {, }; // 指针变量p将来指向struct Student类型的数据
struct Student *p; // 指针变量p指向了stu变量
p = &stu; p->age = ; // 第一种方式
printf("age=%d, no=%d\n", stu.age, stu.no); // 第二种方式
printf("age=%d, no=%d\n", (*p).age, (*p).no); // 第三种方式
printf("age=%d, no=%d\n", p->age, p->no); return ;
}