网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
有以下定义和语句,则sizeof(a.share)的值是( )。
struct date
{ unsigned int day;
unsigned int mouth;
unsigned int year;
union{int share1;
float share2;
}share;
}a;
参考答案
更多 “ 有以下定义和语句,则sizeof(a.share)的值是( )。struct date{ unsigned int day;unsigned int mouth;unsigned int year;union{int share1;float share2;}share;}a; ” 相关考题
考题
若指针p已正确定义,要使p指向两个连续的整型动态存储单元,则正确语句是( )A.p=2 *(int *)malloc(sizeof(int));B.p=(int*)calloc(2*sizeof(int));C.p=(int*)malloc(2* sizeof(int));D.p=2 *(int*)calloc(sizeof(int));
考题
设有定义:char c;float f;int i;unsignedu;double d;下列各表达式的类型分别是()1.u+92.d!=f&&(i+2)3.8.2*i+c
A.1.unsigned,2.int,3.doubleB.1.double,2.double,3.doubleC.1.int,2.double,3.charD.1.unsigned,2.double,3.int
考题
有变量定义如下: int *p; 通过p指针申请动态空间的语句中表达错误的是________A.p=(int *) malloc(sizeof(int));B.p=(int *) malloc(10*sizeof(int));C.p=(int *) calloc(10*sizeof(int));D.p=(int *) calloc(10,sizeof(int));
考题
申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?A.p = (int *) malloc(m*n*sizeof(int));B.p = (int *)calloc(m*n, sizeof(int));C.p = (int *) malloc(m*n, sizeof(int));D.p = (int *)calloc(m * n * sizeof(int));E.int p[m][n];F.p = (int *) realloc(m * n * sizeof(int));
考题
12、申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?A.p = (int *) malloc(m*n*sizeof(int));B.p = (int *)calloc(m*n, sizeof(int));C.p = (int *) malloc(m*n, sizeof(int));D.p = (int *)calloc(m * n * sizeof(int));E.int p[m][n];F.p = (int *) realloc(m * n * sizeof(int));
考题
12、申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?A.申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?B.p = (int *)calloc(m*n, sizeof(int));C.p = (int *) malloc(m*n, sizeof(int));D.p = (int *) malloc(m*n, sizeof(int));E.p = (int *) malloc(m*n, sizeof(int));F.p = (int *) realloc(m * n * sizeof(int));
考题
7、申请一个m×n二维int型动态数组,可以使用语句()。A.int *p; p=(int *)calloc(m*n*sizeof(int));B.int p[m][n];C.int *p; p=(int *)calloc(m*n,sizeof(int));D.int *p; p=(int *)malloc(m*n,sizeof(int));
考题
假设sizeof(int)的值为4,对数组定义:int a[3][6];则sizeof(a[0] )的值为______。 假设sizeof(int)的值为4,对数组定义:int a[3][6];则sizeof(a[0] )的值为______。
热门标签
最新试卷