A: i=p->num
B: i=stu[0].num
C: i=(*p).num
D: p=&student.num;
举一反三
- 设有以下定义struct student{ int age; int num;}stu[5],*p=stu;int i;stu[0].num=10;则以下语句不正确的是 A: i=p->num; B: i=stu[0].num; C: i=(*p).num; D: p=&student.num;
- 以下对结构体变量stu成员age的非法引用是( )。 struct<br/>student {<br/>int num;<br/>int age; }; struct<br/>student stu,*p=&stu; A: stu.age B: (*p).age C: student.age D: p->age
- 以下定义正确的是()。 A: int<br/>num[]; B: #define<br/>N 100int<br/>num[N]; C: int<br/>num[0..100]; D: int<br/>n;int<br/>num[n];
- num=float(input('输入一个数字:\n'))<br/>num=int(num)<br/>num=int((num+5)/2)<br/>num=num*2-5<br/>num=int(num%5)<br/>print(num)输入:14.5输出:______
- 下列结构体中定义正确的是 A: record{<br/>int no;<br/>char num[16];<br/>float score;<br/>} B: struct record{<br/>int no;<br/>char num[16];<br/>float score;<br/>} C: struct record{<br/>int no;<br/>char num[16];<br/>float score;<br/>}; D: struct record{<br/>int no<br/>char num[16]<br/>float score<br/>};
内容
- 0
若有以下定义和语句:struct student { int age,num ; }; struct student stu[3]={{1001,20},{1002,19},{1003,21}}; int main() { struct student *p=stu; … }则以下正确的引用是()。 A: (p++)->num B: ++p->num C: (*p).num D: p->num
- 1
一下选项中,定义结构体变量错误的是( ) A: struct student {int num; char name[30];<br> }wangming; B: struct {int num; char name[30];<br> }wangming; C: struct student {int num; char name[30];<br> }; struct student wangming; D: struct student {int num; char name[30];<br> }; student wangming;
- 2
JavaScript中,需要声明一个整数变量num,以下语句正确的: A: var<br/>num; B: number<br/>num; C: integer<br/>num; D: int<br/>num;
- 3
代码:<br/>num=[1,3,30,9.5,100]<br/>for i in num:<br/>print(i) <br/>运行这3条语句后的输出结果是? A: 1<br/>3<br/>30<br/>9.5<br/>100 B: 1,3,30,9.5,100 C: 9.5,100 D: 1,3,30
- 4
若有以下定义的语句: struct student int age; int num;; struct student stu[3]=1001,20,1002,19,1003,21; main() struct student *p; p=stu; … 则以下不正确的引用是( )。 A: A) (p++)->num B: B) p++ C: C) (*p).num D: D) P=&stu.age.