(填空题)
假定要动态分配一个类型为struct Worker的具有n个元素的数组,并由r指向这个动态数组,则使用的语句表达式为()=malloc(n*sizeof(struct Worker))。
正确答案
struct Worker*r
答案解析
略
相似试题
(填空题)
假定要动态分配一个类型为struct Worker的对象,并由r指针指向这个对象,则使用的表达式为()=malloc(sizeof(struct Worker))。
(单选题)
假定一个链表中结点的结构类型为“struct AA{int data, struct AA *next;};”,则next数据成员的类型为()。
(单选题)
假定一个结构类型的定义为 “struct D{int a; D* next;};”,则该类型的长度为()。
(填空题)
假定一个结构类型的定义为“struct B{int a[5]; char* b;};”,则该类型的理论长度为()。
(填空题)
假定一个结构类型的定义为“struct C{double* a[4];int n;};”,则该类型的大小为()个字节。
(判断题)
假定一个结构类型的定义为 “struct B{int a[5]; char* b;};”,则该类型的长度为20。()
(单选题)
假定一个结构类型的定义为 “struct A{int a,b; double c;};”,则该类型的长度为()。
(判断题)
假定一个结构类型的定义为 “struct A{int a,b; A* c;};”,则该类型的长度为12。()
(填空题)
假定一个结构类型的定义为 “struct A{int a,b; A* c;};”,则该类型的理论长度为()。