网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
若有定义:chara[]="abcdef";charb[]="xyz";则以下程序段运行后屏幕输出为() strcpy(a,b); printf("%c",a[2]);
A
c
B
z
C
/0
D
d
参考答案
参考解析
解析:
暂无解析
更多 “单选题若有定义:chara[]="abcdef";charb[]="xyz";则以下程序段运行后屏幕输出为() strcpy(a,b); printf("%c",a[2]);A cB zC /0D d” 相关考题
考题
有下面的程序段:chara[3],b[]=”student”;a=b;printf(“%s”,a);则()
A.运行后将输出student;B.运行后将输出b;C.运行后将输出aD.编译出错
考题
若有定义: char *st= "how are you "; ,下列程序段中正确的是A.char a[11], *p; strcpy(p=a+1, ,下列程序段中正确的是A.char a[11], *p; strcpy(p=a+1,st[4]);B.char a[11]; strcpy(++a, st);C.char a[11]; strcpy(a, st);D.char a[], *p; strcpy(p=a[1],st+2);
考题
若有定义: char *st= "how are you "; 下列程序段中正确的是A.char a[11], *p; strcpy(p=a+1,st[4]);B.char a[11]; strcpy(++a, st);C.char a[11]; strcpy(a, st);D.char a[], *p; strcpy(p=a[1],st+2);
考题
以下程序运行后,如果从键盘上输入ABCDEF,则输出结果为______。includeinclude
以下程序运行后,如果从键盘上输入ABCDEF<回车>,则输出结果为______。 #include<stdio.h> #include<string.h> func(char str[]) { int num=0; while(*(str+num)!='\0') num++; return(num);p } main() { char str[10],*p=str; gets(p);printf("%d\n",func(P)); }A.8B.7C.6D.5
考题
有以下程序段 main() { char a[7]="abcdef"; charb[4]="ABC"; strcpy(a,b) ; printf("%c",a[5]); } 程序段运行后的输出结果是( )A.aB.\0C.eD.f
考题
若有定义:char*st="how are you";,下列程序段中正确的是A.chara[11],*p;strcpy(p=a+1,st[4]);B.chara[11];strcpy(++a,st);C.chara[11];strcpy(a,st);D.chara[],*p;strcpy(p=a[1],st+2);
考题
以下程序的运行结果是【】。 include include using namespace std; void main()
以下程序的运行结果是【 】。include<iostream>include<string>using namespace std;void main(){chara[10]="China",b[]="Chin",c[]="ese";cout<<strlen(strcat(strcpy(a,b),c))<<endl;}
考题
有以下程序(strcpy为字符串复制函数,strcat为字符串连接函数): #includestdio.h #includestring.h main( ) {char a[10]="abc",b[10]="012",c[10]="xyz"; strcpy(a+1,b+2); puts(strcat(a,c+1)); } 程序运行后的输出结果是( )。A.al2xyzB.12yzC.a2yzD.bc2yz
考题
若有定义:chara[]="abcdef";charb[]="xyz";则以下程序段运行后屏幕输出为() strcpy(a,b); printf("%c",a[2]);A、cB、zC、/0D、d
考题
下面程序段的运行结果是()。 char a[7]= “abcdef”; char b[4]= “ABC”; strcpy(a,b); printf(“%c”,a[5]);A、fB、eC、/0D、∪(∪表示空格)
考题
设已有定义:char*st=”howareyou”;下列程序段中正确的是()。A、chara[11],*p;strcpy(p=a+1,st[4]);B、chara[11];strcpy(++a,st);C、chara[11];strcpy(a,st);D、chara[],*p;strcpy(p=a[1],st+2)
考题
以下关于数组的描述中,正确的有()A、有定义chara[3];则定义了a[1]、a[2]、a[3]三个数组元素B、构成字符数组的各个元素必须是字符类型的数据C、若有定义chara[]="hello";,则数组a的长度为6D、设有数组定义chararray[]="China";则数组array所占的空间为5个字节
考题
若定义chara[80]=”95”,b[]=”windows”;,语句printf(”%s”,strcpy(a,b));的输出结果为()A、windows95B、windowsC、95D、95windows
考题
单选题下面程序段的运行结果是()。 char a[7]= “abcdef”; char b[4]= “ABC”; strcpy(a,b); printf(“%c”,a[5]);A
fB
eC
/0D
∪(∪表示空格)
考题
单选题有以下程序
#include
voidfun2(chara,charb)
{
printf(%c%c,a,b);
}
chara='A',b='B';
voidfun1()
{
a='C';
b='D';
}
main()
{
fun1();
printf(%c%c,a,b);
fun2('E','F');
}
程序的运行结果是( )A
C D E FB
A B E FC
A B C DD
C D A B
考题
单选题若有定义:chara[]="abcdef";charb[]="xyz";则以下程序段运行后屏幕输出为() strcpy(a,b); printf("%c",a[2]);A
cB
zC
/0D
d
考题
单选题有以下程序(strcpy为字符串复制函数,strcat为字符串连接函数):
#include
#include
main()
{
chara[10]=abc,b[10]=012,c[10]=xyz;
strcpy(a+1,b+2);
puts(strcat(a,c+1));
}
程序运行后的输出结果是( )。A
a12xyzB
12yzC
a2yzD
bc2yz
热门标签
最新试卷