【名词&注释】
字符串(string)、二叉树(binary tree)、表达式、第一次(the first time)、运算符(operator)、第三次(the third time)、死循环(endless loop)、第四次(the fourth)、要注意(should be noticed)
[单选题]若有定义 :char *x="abcdefghi"; ,以下选项中正确运用了 strcpy 函数的是
A. char y[10]; strcpy(y,x[4]);
B. char y[10]; strcpy(++y,&x[1]);
C. char y[10],*s; strcpy(s=y+5,x);
D. char y[10],*s; strcpy(s=y+1,x+1);
查看答案&解析查看所有试题
学习资料:
[单选题]表达式 3.6-5/2+1.2+5 % 2 的值是
A. 4.3
B. 4.8
C. 3.3
D. 3.8
[单选题]已知二叉树BT的后序遍历序列是dabec,中序遍历序列是debac,它的前序遍历序列是______。
A. cedba
B. acbed
C. decab
D. deabc
[单选题]有以下程序 main() { int i=0,s=0; for(;;) { if(i==3‖i==5) continue; if(i==6) break; i++; s+=i; }; printf("%d\n",s); } 程序运行后的输出结果是
A. 10
B. 13
C. 24
D. 程序进入死循环(endless loop)
[单选题]若有定义:int a[2][3];则才a数组的第i行第j列(假调i,j已正确说明并赋值)元素值的正确引用为
A. *(*(a+i)+j)
B. (a+i)[j]
C. *(a+i+j)
D. *(a+i)+j
[单选题]下列程序运行后的输出结果是 Private Sub Command1_Click() For k=3 To 1 Step-1 x=String(k,"*") Print x Next End Sub
A. * * * * * *
B. 1 * 2 * 3 *
C. 3 * 2 * * 1 * * *
D. * * * * * *
本文链接:https://www.51ksbd.net/show/ng64r3.html