码迷,mamicode.com
首页 > 其他好文 > 详细

指针实现取出结构体变量中的成员

时间:2018-11-04 12:47:28      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:std   变量   \n   oid   clu   int   include   float   main   

#include <stdio.h>

struct Student
{
  int age;
  float score;
  char sex;
};

int main(void)
{
  struct Student st = {80, 66.6F, ‘F‘};
  struct Student st2;
  st2.age = 10;
  st2.score = 88.8f;
  st2.sex = ‘F‘;
  struct Student *pst = &st;
  st.age = 100;
  pst->score = 99.9f;
  (*pst).sex = ‘M‘;
  printf("%d %f %c\n",st.age, pst->score, (*pst).sex);
  printf("%d %f %c\n",st2.age, st2.score, st2.sex);
  return 0;
}

指针实现取出结构体变量中的成员

标签:std   变量   \n   oid   clu   int   include   float   main   

原文地址:https://www.cnblogs.com/bingyunbuxi/p/9903268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!