单项选择题
数据库系统可分为三级模式,下列选项中不属于数据库三级模式的是
A.抽象模式
B.外模式
C.概念模式
D.内模式
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
以下对结构体类型变量td的定义中,错误的是
A.typedef struct aa { int n; float m; }AA; AA td;
B.stmct aa{ int n;float m;}td;stmct aa td;
C.struct { int n; float m; }aa; struct aa rd;
D.struct{ int n;float m;}td;
点击查看答案&解析
单项选择题
以下函数的功能是:通过键盘输入数据,为数组中的所有元素赋值。 #define N 10 void arrin(int x[N]) { int i=0; while(i<N) scanf( %d , ______); } 在下划线处应填入的是
A.x+i
B.&x[i+1]
C.x+(i++)
D.&x[++i]
点击查看答案&解析
相关试题
有以下程序: void sort(int a[],in...
有以下程序 struct STU { char num[...
有以下程序: void swapl(int c[])...
有以下程序 #include <string.h> st...
有以下程序(提示:程序中fseek(fp-2L*...