設(shè)有以下語句:
char str1[]= “string”,str2[8],*str3,*str4= “ string”;
則不能對(duì)庫函數(shù)strcpy(復(fù)制字符串)的正確調(diào)用的是()
A.strepy(str1,“HELLO1”);
B.strepy(str2,“HELL02”);
C.strcpy(str3, “HELL03”)
D.strcpy(str4, “HELLO4”);
您可能感興趣的試卷
你可能感興趣的試題
以下程序的輸出結(jié)果是()
#include
union pw
{int i;char ch[2];}a;
main( )
{a.ch[0]=13;a.ch[1]=0;printf(”%d\n”,a.i);}
(注意:ch[0]在低字節(jié),ch[1]在高字節(jié)。)
A.13
B.14
C.208
D.209
設(shè)有以下語句(其中0≤i<10),則不能對(duì)a數(shù)組元素的正確引用是()
int a[10]={0,l,2,3,4,5,6,7,8,9},*p=a;
A.a[p-a]
B.*(&a[i])
C.p[i]
D.*(*(a+i))
A.自動(dòng)(auto)
B.靜態(tài)(static)
C.寄存器(register)
D.外部(extern)
以下程序的輸出結(jié)果是()
#include
main()
{int a,b,d=241;
a=d/100%9;
b=(-1)&&(-1);
printf(“%d,%d\n”,a,b);}
A.6,1
B.6,0
C.2,1
D.2,0
以下程序的輸出結(jié)果是()
#include
main()
{int a=2,c=5;
printf(“a=%%d,b=%%d\n”,a,c);}
A.a=%2,b=%5
B.a=2,b=5
C.a=%%d、b=%%d
D.a=%d、b=%d
最新試題
設(shè)有如下定義:int a=1,b=2,c=3,d=4,m=5,n=6;則執(zhí)行表達(dá)式:(m=a>b)‖(n=c>d)后,n的值是()
執(zhí)行語句:for(i=l;i++<4;);后,變量i的值是()
編程:寫一函數(shù),統(tǒng)計(jì)輸入一個(gè)字符串中字母的個(gè)數(shù)。
C語言中,函數(shù)的默認(rèn)存儲(chǔ)類別是()
調(diào)用函數(shù):strcat(strcpy(strl,str2),str3)的結(jié)果是()
若有以下的定義:int a[]= {1,2,3,4}.*p=a;則值為3的表式是()
寫出程序執(zhí)行結(jié)果
語句while(E);中的條件E等價(jià)于()
編程:用鍵盤輸入整數(shù)給一個(gè)2×3的2維數(shù)組各元素賦值,并輸出全部元素的值。
從鍵盤輸入一個(gè)4行5列的二維整形數(shù)組,輸出其每一行的最小值。