西周侍立天子之侧、应对天子提问的专职秘书人员是()
A.行人
B.典瑞
C.掌节
D.承
参考答案:D
Ladies and gentlemen,please fasten your seat belts.The plane .
A.takes off
B.took off
C.is taking off
D.has taken off
下面程序的运行结果是 【11】 。 #include<stdio.h> #define SIZE 12 main() char s[SIZE];int i;for(i=0;i<SIZE;i++) s[i]=’A’+i+321;sub(s,7,SIZE-1);for(i=0;i<SIZE;i++) printf("%c",s[i]);printf("\n"); sub(char*a,int tl,int t2) char ch;while(t1<t2) ch=*(a+t1); *(a+t1)=*(a+t2); *(a+t2)=ch;t1++;t2--;