____, ____, and ____are three of the most distinguished exponents of the stream-of-consciousness.
查看答案
说明一个结构体变量时系统分配给它的内存是()。
A. 各成员所需要内存量的总和
B. 结构体中第一个成员所需内存量
C. 成员中占内存量最大者所需的容量
D. 结构中最后一个成员所需内存量
设有以下说明语句:struct integer { int a ; float b ; } teg;则下面的叙述不正确的是()。
A. struct 是结构体类型的关键字
B. struct integer 是用户定义的结构体类型
C. a 和b 都是结构体成员名
D. teg是用户定义的结构体类型名
以下对结构体变量stu1中成员age的正确引用是()。struct student{ int age;int num;}stu;
A. stu.age
B. student.age
C. student.stu.age
D. struct stu.age
以下程序的运行结果是________。struct num{int x;char c;};void func(struct num b){b.x=20;b.c='y';}int main(){struct num a={10,'x'};func(a);printf("%d,%c",a.x,a.c);return 0;}