有以下程序
#include <stdio.h>
void exch(int t[ ])
{ t[0]=t[5]; }
main()
{ int x[10]={1,2,3,4,5,6,7,8,9,10),i=0;
while(i<=4){ exch(&x[i]); i++; }
for(i=0; 1<5;i++) printf(”%d",x[i]);.
printf("\n");
}
程序运行后输出的结果是
A. 2 4 6 8 10
B. 1 3 5 7 9
C. 1 2 3 4 5
D. 6 7 8 9 10
以下程序的功能是输出a数组中所有字符串,请填空。
#include <stdio.h>
main()
{ char *a[ ]={”ABC”,”DEFGH”,”IJ”,”KLMNOP”};
int i=0;
for(;i<4; i++) printf(”%s\n【 13 】 );
}
有以下程序
#include <stdio.h>
main()
{ int s=0,n;
for(n=o;n<3;n++)
{ switch(s)
{ case 0:
case 1: s+=1;
case 2: s+=2; break;
case 3: s+=3;
default: s+=4;
}
printf(”%d,”,s);
}
}
程序运行后的输出结果是
A. 1,2,4,
B. 1,3,6,
C. 3,10,14,
D. 3,6,10,
查询设计器中的“筛选”选项卡的作用是
A. 查看生成的SQL代码
B. 指定查询条件0
C. 增加或删除查询表
D. 选择所要查询的字段