网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
若有定义: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.编译出错
考题
下面程序的输出结果为______。includemain(){charP[17]="abc"="ABC".STR[50]="xyz";st
下面程序的输出结果为______。 #include<string.h> main() { charP[17]="abc"="ABC".STR[50]="xyz"; strcpy(str,strcat(p1,p2)); printf(%s,str); }A.xyzabcABCB.abcABCC.xyzabcD.xyzABC
考题
若有以下定义和语句: char*s1="12345",*s2="1234"; printf("%d\n",strlen(strcpy(s1,s2)));则输出结果是______。A.4B.5C.9D.10
考题
以下程序运行后,如果从键盘上输入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);
考题
若有以下定义语句: char * sl="12345", * s2="1234"; printf("%d"n",strlen(strcpy(s1,s2))); 则输出结果是 ( )A.4B.5C.9D.10
考题
有以下程序(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
考题
在执行以下程序时,如果从键盘上输入:ABCdef,则输出为______。 main() { char ch; while((ch
在执行以下程序时,如果从键盘上输入:ABCdef<回车>,则输出为______。 main() { char ch; while((ch=getchar())!='\n') { if(ch>='A' ch<='Z') ch=ch+32; else if(ch>='a'ch<='2')ch=ch-32; printf("%c",ch); } printf("\n"); }A.ABCdefB.abcDEFC.abcD.DEF
考题
若有如下程序: main() { int n=2; do {printf("%d",n--);} while(!--n)); } 则程序运行后的输出结果是( )。A.2B.11C.1D.20
考题
数字字符'0'的ASCII值为48,若有以下程序:include main( )char a='1',b ='2';printf( "
数字字符'0'的ASCII值为48,若有以下程序: #include <stdio.h> main( ) char a='1',b ='2'; printf( "% c,",b + + ); printf(" % d \n" ,b - a); } 程序运行后的输出结果是( )。A.3,2B.50,2C.2,2D.2,50
考题
若有定义: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)
考题
若定义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
main()
{
charb,c;
inti;
b='a';
c='A';
for(i=0;i6;i++)
{
if(i%2)putchar(i+b);
elseputchar(i+c);
}
printf();
}
程序运行后的输出结果是( )。A
aBcDeFB
ABCDEFC
AbCdEfD
abcdef
考题
单选题有以下程序:
#include
#include
main()
{
inti;
chara[]=Howareyou!;
for(i=0;a[i];i++)
{
if(a[i]=='')
{
strcpy(a,a[i+1]);
i=0;
}
}
printf(%s,a);
}
程序的运行结果是( )。A
you!B
Howareyou!C
areyou!D
are you!
考题
单选题有以下程序(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
考题
单选题有以下程序
#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
热门标签
最新试卷