有以下程序: #include<stdio.h> struct s{int a;int b;}; main( ) { struct s a,*p=&a; a.a=99; print{("%d\n",________): } 程序要求输出结构体中成员a的数据

admin2022-06-24  51

问题 有以下程序:
#include<stdio.h>
struct s{int a;int b;};
main( )
{
struct s a,*p=&a;
a.a=99;
print{("%d\n",________):
}
程序要求输出结构体中成员a的数据,以下不能填入横线处的内容是(          )。

选项 A、a.a
B、*p.a
C、p->a
D、(*p).a

答案B

解析 本题考查指针变量的引用。有三种引用方式:①结构体变量.成员名;②(*p).成员名;③p->成员名。题目中要求输出结构体中成员a的数据,p为指针,*p为结构体变量,所以*p.a不能引用结构体中成员a的数据。
转载请注明原文地址:https://kaotiyun.com/show/fGkp777K
0

随机试题
最新回复(0)