structstudent//struct结构student 结构名{intid;// 成员1学号charname[20];//成员2姓名char sex;//成员3性别intage;// 成员4年龄floatscore;// 成员3成绩};//结束定义结构struct studentstud1={01,"zhang",'f',18,80.5};struct student stud2={02,"liu",'m',19,96};stud1.id 是(1)stud2.age 是(2)stud2.name[2]是(3)修改第一个学生的成绩为99,对(4)=99
举一反三
- 以下对结构体类型的变量定义中不正确的是 。 A: B: define STUD struct student STUD {long num; char name[20]; char sex; float score;}; STUD stud1,stud2; C: struct student {long num; char name[20]; char sex; float score; }stud1,stud2; D: struct {long num; char name[20]; char sex; float score; } stud1,stud2; E: struct {long num; char name[20]; char sex; float score; }student;struct student stud1,stud2;
- 在如下结构体定义中,不正确的是○。 A: struct student { int no; char name[10]; float score; } B: struct stud[20] { int no; char name[10]; float score; } C: struct student { int no; char name[10]; float score; }stud[20]; D: struct{int no;char name[10];float score;}stud[100];
- 已知: Struct st{ Int num; Char sex; Float score; }stud,*p=&stud; 则对于结构体变量stud的成员num正确的引用是_________。
- 已知: struct st{ int num; char sex; float score; }stud,*p=&stud; 则对于结构体变量stud的成员num正确的引用是____。 A: stud->num B: st.num C: p->num D: p.num
- 国际市场分销渠道的管理顺序() (1)评估渠道成员 (2)调整分销渠道 (3)选择渠道成员 (4)激励渠道成员 A: (1)(3)(4)(2) B: (1)(2)(3)(4) C: (3)(4)(1)(2) D: (3)(1)(4)(2)