摘要: 指向结构体变量的指针 例如:struct student *p //p可以指向struct student 类型的变量或数组元素; 例题: #include <stdio.h>main(){ struct student { char name[20]; //姓名 int num; //学号 int 阅读全文
posted @ 2017-12-07 19:16 _痴人说梦 阅读(1227) 评论(0) 推荐(0)