摘要: 下列程序的输出结果是()。 #include main() {stmct st {int y,x,z; }; union {long i; i[阅读全文:]
摘要: 有下列函数定义: int fun(double a,double B) {return a*b;} 若下列选项中所用变量都已正确定义[阅读全文:]
摘要: 下列程序段的输出结果为()。 #include main() {static char a[]="language"; char*p; p=[阅读全文:]
摘要: 两个或两个以上模块之间联系的紧密程度称为()。[阅读全文:]
摘要: 两次运行下列的程序,如果从键盘上分别输入3和1,则输出结果是()。 main() {int x; scanf("%d",&[阅读全文:]
摘要: 下列程序的运行结果是()。 #include voidfun(int*s,int*p) {static int t=3; *p=s[t]; t[阅读全文:]
摘要: 算法的空间复杂度是指()。[阅读全文:]
摘要: 下列程序的运行结果是()。 main() {int a=-5,b=1,c=1; int x=0,y=2,z=0; if(c>0) x=x+y; if(a<=0)[阅读全文:]
摘要: 下列选项中不合法的+六进制数是()。[阅读全文:]
摘要: 有以下程序: struct STU {char name[10];int num;float TotalScore;}; void f(struct S[阅读全文:]