黑马程序员技术交流社区

标题: 用指针访问结构体变量值的两种方法? [打印本页]

作者: LIUHENG0408    时间: 2015-11-30 01:09
标题: 用指针访问结构体变量值的两种方法?
答:(*p).成员变量名     (*p) == 结构体变量
            p -> 成员变量名
代码演示:#include <stdio.h>
               int main(int argc,const char *argv[])
              {
              struct Student
              {
               int age;
              char *name;
              }
             struct Student stu1 = {25,"xian san"};
             struct Student *p = &stu1;
             //第一种方式
             printf("%d ,%s\n",(*p).age,(*p).name);
             //第二种方式
             printf("%d,%s\n",p ->age,p->name);
             return 0;
             }

作者: 亚里士缺德    时间: 2015-11-30 01:15
大赞{:2_31:}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2