单项选择题

有以下程序:
#include<iostream>
using namespace std;
int a;
int fun();
int main()
externint a;
int b;
a=10;
b=fun();
cout<<b<<end1;
return 0;
int fun()
extern int a;
return(10*

A.;
<
<上一题 目录 下一题>
热门 试题

单项选择题
以下程序的输出结果是( )。 #include<iostream> using namespace std; void fun(char**q) ++q; cout<<*q<<end1; main() static char*s[]= HI , HELL0 , TEST ; char**p; p=s; fun(p); system( PAUSE ); return 0;
A.为空
B.HI
C.HELL0
D.TEST
填空题
关系代数是关系操作语言的一种传统表示方式,它以集合代数为基础,它的运算对象和运算结果均为______。
相关试题
  • 对基类数据成员的初始化必须派生类的构造函...
  • 有如下类声明: class MyClass int i;...
  • 下列程序的输出结果为: Object id=0 ...
  • 在下面横线上填上适当的语句,完成程序。 ...
  • 下列程序的输出结果是______。 #in...