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));
最新試題
設(shè)有如下定義:int a=1,b=2,c=3,d=4,m=5,n=6;則執(zhí)行表達式:(m=a>b)‖(n=c>d)后,n的值是()
寫出程序執(zhí)行結(jié)果
若有以下語句:int u=020,v=0x20,w=‘\20’;printf(“%d,%d,%d\n”,u,v,w);則輸出結(jié)果是()
寫出程序執(zhí)行結(jié)果
C語言中基本數(shù)據(jù)類型包括()
語句while(E);中的條件E等價于()
C語言中,函數(shù)的默認存儲類別是()
寫出程序執(zhí)行結(jié)果
C語言中以下說法正確的是()
編程:寫一函數(shù),統(tǒng)計輸入一個字符串中字母的個數(shù)。