当前位置:首页
> Luz 第6145页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:若有以下宏定义:
若有以下宏定义:```#define N 2#define Y(n) ((N+1)*n)```则执行语句“z=2*(N+Y(5));”后的结果是( )。@[B](1)A. 语句有错误B. z=34C. z=70D. z无定值A.语句有错误…
单选题:将一个函数说明为static后,该函数将 ( )。
将一个函数说明为static后,该函数将 ( )。@[B](1)A. 既能被同一源文件中的函数调用,也能被其他源文件中的函数调用B. 只能被同一源文件中的函数调用,不能被其他源文件中的函数调用C. 只能被其他源文件中的函数调用,不能被同一…
单选题:在一个C源程序文件中,若要定义一个只允许本源文件中所有函数使用的全局变量,则该变量需要使用的存储类别是。
在一个C源程序文件中,若要定义一个只允许本源文件中所有函数使用的全局变量,则该变量需要使用的存储类别是。 @[D](1)A. externB. registerC. autoD. staticA.externB.registerC.au…
单选题:下列关于构造函数的描述中,错误的是()
下列关于构造函数的描述中,错误的是() @[B](2)A. 构造函数名与类名相同B. 构造函数可以有返回值C. 构造函数可以重载D. 每个类都有构造函数A.构造函数名与类名相同B.构造函数可以有返回值C.构造函数可以重载D.每个类都有构…
单选题:Determine the displaying of the following program:
Determine the displaying of the following program: @[C](1)A.…
单选题:Determine the displaying of the following program:
Determine the displaying of the following program: @[D](1)A.…
单选题:Determine the displaying of the following program:
Determine the displaying of the following program: @[A](1)A.…
单选题:Determine the displaying of the following program:
Determine the displaying of the following program: @[B](1)A.…
单选题:The output of this program is ( ).
The output of this program is ( ).```#define add(a,b) (a+b)int main(){ printf("%d\n",5*add(3,4)); return 0;}``` @[…
单选题:无向图的邻接矩阵是一个\_\_\_\_。
无向图的邻接矩阵是一个\_\_\_\_。 @[A](2)A. 对称矩阵B. 零矩阵C. 上三角矩阵D. 对角矩阵A.对称矩阵B.零矩阵C.上三角矩阵D.对角矩阵答案:A…