【答案】以下对结构体变量s 中成员age的合法法引用是()。 #include<string.h> struct s

返回首页智慧树时间:2022-11-15 19:20
题目 / 答案提交正确答案

以下对结构体变量s 中成员age的合法法引用是()。 #include<string.h> struct student {int age; int num; } s,*p; p=&s;

A.student.s.age

B.student.age

C.p->age

D.s->age

正确答案:C

本文链接:https://www.oyuuu.com/Ti/ZhiHuiShu/352915.html

关键字  浏览量:
上一篇:C语言规定结构体变量系统分配给它的存储空间是()。
下一篇:用宏替代计算多项式4*x*x+3*x+2之值的函数f,正确的宏定义是()。
相关问题
  • 【智慧树】以下对结构体变量stul中成员age的非法引用是()。 struct student {int age; int num