单项选择题
下列程序的输出结果为 #include<iostream.h> void main() { char*a[]={"hello","the","world"}; char**pa=a; pa++; cout<<*pa<<end1; }
A.hello
B.the
C.world
D.hello the world
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
决定C++语言中函数的返回值类型的是
A.return语句中的表达式类型
B.调用该函数时系统随机产生的类型
C.调用该函数时的主调用函数类型
D.在定义该函数时所指定的数据类型
点击查看答案&解析
单项选择题
下列程序的运行结果为 #include<iostream.h> void print(double a) { cout<<++a; } void print(int a,int b) { cout<<b<<a; } Void main() { print(1.2); cout<< ; print(3,4); }
A.1.2 34
B.2.2 34
C.1.2 43
D.2.2 43
点击查看答案&解析
相关试题
下面程序的输出结果是 #include<iostrea...
下列程序的执行结果为 #include<iostrea...
下面程序的运行结果为 #include<iostrea...
软件生命周期中所花费用最多的阶段是
下列关于多态性的描述,错误的是