设已定义:float score[N][2]={{89,90},{92,93},{78,95},{100,98},{96,94},{96,97}};则元素score[1][1]的正确初值是()
查看答案
如果添加学生的名字作为学生管理系统当中的保存项,可在程序中完成学生名字数组的定义,以下定义方法正确的是( )
A. char name[N]
B. char name[N][100]
C. char name
D. char name[N][]
若是给结构体类型student取别名,其中正确的是( )
A. typedef struct student stu
B. typedef student struct stu
C. define student struct stu
D. define student stustruct
若定义数组float avg[6],则数组avg在内存中所占的字节数为
A. 6
B. 12
C. 24
D. 28
在定义struct stu{int a1;int a2;int a3;};中,结构体类型标识符为( )
A. int
B. struct
C. str
D. struct str