A.gets()
B.getc()
C.getchar()
D.scanf()
您可能感興趣的試卷
你可能感興趣的試題
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_
最新試題
C語(yǔ)言中,函數(shù)的默認(rèn)存儲(chǔ)類別是()
寫出程序執(zhí)行結(jié)果
寫出程序執(zhí)行結(jié)果
若有以下語(yǔ)句:int **pp,*p, a=10,b=20; pp=&p; p=&a; p=&b;printf("%d\n" ,*p,**pp) ;則輸出結(jié)果是()
若有以下說(shuō)明:int [10]={1,2,3.4,5,6,7,8,9,10},*p= a;則數(shù)值為6的表達(dá)式是()
寫出程序執(zhí)行結(jié)果
寫出程序執(zhí)行結(jié)果
寫出程序執(zhí)行結(jié)果
執(zhí)行以下程序int y=2; do{y-- ;} while( --y)循環(huán)體將執(zhí)行()
編程:用鍵盤輸入整數(shù)給一個(gè)2×3的2維數(shù)組各元素賦值,并輸出全部元素的值。