A.自動(auto)
B.靜態(tài)(static)
C.寄存器(register)
D.外部(extern)
您可能感興趣的試卷
你可能感興趣的試題
以下程序的輸出結果是()
#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
以下程序的輸出結果是()
#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
以下程序的輸出結果是()
#include
#include
main()
{char str[12]={‘8’,‘t’,‘r’,‘i’, ‘n’,‘g’,‘、0’,‘a’};
printf(“%d\n”,strlen(str));}
A.6
B.7
C.8
D.12
A.不能使用do—while語句構成的循環(huán)
B.do-while語句構成的循環(huán)必須用break語句才能退出
C.do-while語句構成的循環(huán),當while語句中的表達式值為非零時結束循環(huán)
D.do-while語句構成的循環(huán),當while語句中的表達式值為零時結束循環(huán)
A.-12
B.0
C.3
D.9
最新試題
執(zhí)行int x,y,z.k;x=(y=4,z=16,k=32)后,x的值是()
執(zhí)行以下程序int y=2; do{y-- ;} while( --y)循環(huán)體將執(zhí)行()
從鍵盤輸入一個4行5列的二維整形數(shù)組,輸出其每一行的最小值。
將文本文件fin.dat中的數(shù)字字符找出并寫入文本文件fnum.dat中
寫出程序執(zhí)行結果
標準函數(shù)fgets(s,n,f)的功能是()
C語言中基本數(shù)據(jù)類型包括()
寫出程序執(zhí)行結果
C語言中,函數(shù)的默認存儲類別是()
寫出程序執(zhí)行結果