-->
当前位置:首页 > Luz 第6140页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:若有以下定义和语句:

Luz5年前 (2021-05-10)760
若有以下定义和语句:```int a[10]={1,2,3,4,5,6,7,8,9,10},*p=a;```则不能表示a数组元素的表达式是______。 @[B](2)A. *pB. a[10]C. *aD. a[p-a]A.*pB.…

单选题:若有以下说明,且0

Luz5年前 (2021-05-10)2486
若有以下说明,且0˂=i˂10,则____是对数组元素地址的正确表示: @[D](2)```int a[ ]={1,2,3,4,5,6,7,8,9,10},*p=a,i ;```A. &(a+1)B. a++C. &pD. &p[i ]…

单选题:若要用下面的程序片段使指针变量p指向一个存储整型变量的动态存储单元:

Luz5年前 (2021-05-10)804
若要用下面的程序片段使指针变量p指向一个存储整型变量的动态存储单元:```int *p;p=__________ malloc( sizeof(int));```则应填入: @[D](2)A. intB. int *C. (*int)D.…

单选题:若已定义:

Luz5年前 (2021-05-10)725
若已定义:```int a[9],*p=a;```并在以后的语句中未改变p的值,不能表示a[1] 地址的表达式是____。 @[C](2)A. p+1B. a+1C. a++D. ++pA.p+1B.a+1C.a++D.++p答案:C…

单选题:The function of the following program is to calculating area of

Luz5年前 (2021-05-10)575
The function of the following program is to calculating area of circle. There is an **error** in the compiler, please fi…

单选题:The **invalid** identifier in the following is ( )

Luz5年前 (2021-05-10)706
The **invalid** identifier in the following is ( ) @[D](1)A. aaB. FORC. pfintD. 00A.aaB.FORC.pfintD.00答案:D…

单选题:以下程序运行后的输出结果是( )。

Luz5年前 (2021-05-10)636
以下程序运行后的输出结果是( )。 @[D](1)```int fun(int x, int y){ if(x˃y) return x; else return y;}int main(void){ int x=3,y=8,z=6,…

单选题:Which expression can express " a≥10 or a≤0 " ?

Luz5年前 (2021-05-10)702
Which expression can express " a≥10 or a≤0 " ? @[D](1)A. a˃=10 or a˂=0B. a˃=0 | a˂=10C. a˃=10 && a˂=0D. a˃=10 || a˂=0A…

单选题:According to the C syntax, ( ) is a **valid** character constan

Luz5年前 (2021-05-10)631
According to the C syntax, ( ) is a **valid** character constant among the followings @[B](1)A. "0"B. '\102'C. '12'D.…

单选题:Which is the **valid** variable name in the follows?

Luz5年前 (2021-05-10)647
Which is the **valid** variable name in the follows? @[B](1)A. 3daysB. sumC. intD. M.zA.3daysB.sumC.intD.M.z答案:B…