指针实现取出结构体变量中的成员
Posted bingyunbuxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指针实现取出结构体变量中的成员相关的知识,希望对你有一定的参考价值。
#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
",st.age, pst->score, (*pst).sex);
printf("%d %f %c
",st2.age, st2.score, st2.sex);
return 0;
}
以上是关于指针实现取出结构体变量中的成员的主要内容,如果未能解决你的问题,请参考以下文章