A.int x[][3]={0};
B.int x[2][3]={{l,2},{3,4},{5,6}};
C.int x[][3]={{l,2,3},{4,5,6}};
D.int x[2][3]={l,2,3,4,5,6I};
您可能感興趣的試卷
你可能感興趣的試題
A.Char str[]={’\064’};
B.Char str=”kx43”;
C.Char str=”;
D.Char str[]=”\0”;
A.3.3
B.3.8
C.4.3
D.4.8
A.011
B.1e1
C.OxabCd
D.8.OE0.5
A.j2_KEY
B.Double
C.4d
D._8_
以下程序段的輸出結(jié)果是()。
union node
{int a;
float b;
Char C[10];};
printf(”%d”,sizeof(union node));
最新試題
若有以下語(yǔ)句:int u=020,v=0x20,w=‘\20’;printf(“%d,%d,%d\n”,u,v,w);則輸出結(jié)果是()
若有以下語(yǔ)句:int **pp,*p, a=10,b=20; pp=&p; p=&a; p=&b;printf("%d\n" ,*p,**pp) ;則輸出結(jié)果是()
能正確表示a≥0且a≤10的關(guān)系表達(dá)式是()
sizeof(double)是()
寫出程序執(zhí)行結(jié)果
給出以下定義:char a[]=″abc″;char b[]={′a′,′b′,′c′};則正確的敘述是()
語(yǔ)句:printf(“%d、n”,12&012);的輸出結(jié)果是()
將文本文件fin.dat中的數(shù)字字符找出并寫入文本文件fnum.dat中
寫出程序執(zhí)行結(jié)果
寫出程序執(zhí)行結(jié)果