以下for語句構(gòu)成的循環(huán)執(zhí)行的次數(shù)是()
#include
#define N 2
#define M N+l
#define NUM(M+1)*M/2
main()
{int i,n=0;
for(i=1;i<=NUM;i++)
{n++;printf(“%d”,n);}
printf(“\n”);}
A.5
B.6
C.8
D.9
您可能感興趣的試卷
你可能感興趣的試題
以下程序的輸出結(jié)果是()
#include
main()
{inti:
for(i=l;i<=5;i++)
{if(i%2)
printf(“*”);
else
continue;
printf(“*”);}
printf(“$\n”);I
A.*#*#*#$
B.#*#*#*$
C.*#*#$
D.#*#*$
設(shè)有以下語句:
char str1[]= “string”,str2[8],*str3,*str4= “ string”;
則不能對庫函數(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),則不能對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.自動(auto)
B.靜態(tài)(static)
C.寄存器(register)
D.外部(extern)
最新試題
編程:寫一函數(shù),統(tǒng)計輸入一個字符串中字母的個數(shù)。
若有以下說明:int [10]={1,2,3.4,5,6,7,8,9,10},*p= a;則數(shù)值為6的表達(dá)式是()
語句while(E);中的條件E等價于()
將文本文件fin.dat中的數(shù)字字符找出并寫入文本文件fnum.dat中
C語言中,函數(shù)的默認(rèn)存儲類別是()
若有以下語句:int **pp,*p, a=10,b=20; pp=&p; p=&a; p=&b;printf("%d\n" ,*p,**pp) ;則輸出結(jié)果是()
語句:printf(“%d、n”,12&012);的輸出結(jié)果是()
設(shè)有如下定義:int a=1,b=2,c=3,d=4,m=5,n=6;則執(zhí)行表達(dá)式:(m=a>b)‖(n=c>d)后,n的值是()
寫出程序執(zhí)行結(jié)果
sizeof(double)是()