中国人的姓名通常不超过4个汉字,把姓名作为字符串,定义一个能够存放姓名的字符数组,在C语言中写作:_______
A: char name[4];
B: char name[8];
C: char name[9];
D: int name[4];
E: int name[8];
F: int name[9];
A: char name[4];
B: char name[8];
C: char name[9];
D: int name[4];
E: int name[8];
F: int name[9];
举一反三
- 中国人的姓名通常不超过 4 个汉字,把姓名作为字符串,定义一个能够存放姓名的字符数组,写作: _______
- 下列结构体的定义正确的是( )。 A: student { int num; char name[10]; char sex; }; B: struct student { int num; char name[10]; char sex; } C: struct student { int num; char name[10]; char sex; }; D: struct student { int num char name[10] char sex };
- 下列定义中,属于指针数组的是( )? A: char *name[]={"abc","de"}; B: char (*p)[]; C: int (*p)[]; D: int (*name)[];
- 以下变量定义,错误的是: A: struct student{int num, char name[20];} s; B: struct {int num, char name[20];} s; C: struct student{int num, char name[20];}; struct student s; D: struct student{int num, char name[20];} ; student s
- 对结构体类型变量定义不正确的是( )。 A: B: define STUDENT struct studentSTUDENT{char name;int num;}std; C: struct student{char name;int num;}stu; D: E: define struct student{char name;int num;}STD;STD stu; F: struct{char name;int num;}student;struct student stu;