单项选择题
设有定义int x; float y; , 则10+x+y值的数据类型是
A.int
B.double
C.float
D.不确定
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下列程序的输出结果为() #include<iostream.h> void main( ) { char * a[ ] ={ hello}, the , world }; char * * pa=a; pa++; cout < < * pa < < endl; }
A. hello
B. the
C. world
D. hellotheworld
点击查看答案&解析
单项选择题
决定C++语言中函数的返回值类型的是
A.return语句中的表达式类型
B.调用该函数时系统随机产生的类型
C.调用该函数时的主调用函数类型
D.在定义该函数时所指定的数据类型
点击查看答案&解析
相关试题
下面程序的运行结果为() #include<ios...
下列程序的运行结果为() #include<ios...
下列程序的运行结果是() #include<ios...
下面程序的输出结果是() #include<ios...
在公有派生情况下,有关派生类对象和基类对...