【名词&注释】
多任务(multitask)
[单选题]请读程序:#include f(int b[],int n){int i,r;r=1;for(i=0;i<=n;i++)r=r*b[i];return r;}main(){int x,a[]={2,3,4,5,6,7,8,9};x=f(a,3);printf("%d\n",x);}上面程序的输出结果是()
A. 720
B. 120
C. 24
D. 6
查看答案&解析
查看所有试题
学习资料:
[单选题]在.NETFramework中,组件是指实现()接口的一个类。
A. A、System.ComponentModel.Design
B. B、System.ComponentModel.IComponent
C. C、System.CodeDom.Compiler
D. D、System.Configuration.Assemblies
[单选题]如果一个模块内部的处理成分是相关的,而且这些处理必须以特定的次序执行,则称为过()。
A. A、偶然内聚
B. B、过程内聚
C. C、逻辑内聚
D. D、功能内聚
[单选题]多任务通常包括()大类。
A. A、5
B. B、3
C. C、2
D. D、4
[单选题]下面程序的输出是()。main(){int x=10,y=3;printf("%d\n",y=x/y);}
B. 1
C. 3
D. 不确定的值
[单选题]以下能正确定义数组并正确赋初值的语句是()
A. int N=5,b[N][N];
B. int a[1][2]={{1},{3}};
C. int c[2][]={{1,2},{3,4}};
D. int d[3][2]={{1,2},{34}};
[单选题]请读程序:#include<stdio.h>void fun(float *pl, float *p2, float *s){ s=( float * )calloc( 1, sizeof(float));*s=*p1+ *(p2++);}main(){ float a[2]={1.1, 2.2}, b[2]={10.0, 20.0}, *s=a;fun(a, b, s)printf(""%f\n"",*s);}上面程序的输出结果是()
A. 11.100000
B. 12.100000
C. 21.100000
D. 1.100000
本文链接:https://www.51bdks.net/show/wnx6v0.html