判断题
错误
执行malloc(sizeof(structBB))函数调用时,得到的动态存储空间能够保存具有structBB...
判断题执行malloc(sizeof(struct BB))函数调用时,得到的动态存储空间能够保存具有struct BB结构类型的一个对象。()
执行calloc(n,8)函数调用时,将动态分配得到8*n个字节的存储空间。()
判断题执行calloc(n,8)函数调用时,将动态分配得到8*n个字节的存储空间。()
假定一个结构类型的定义为“structB{inta[5];char*b;};”,则该类型的长度为20。()
判断题假定一个结构类型的定义为 “struct B{int a[5]; char* b;};”,则该类型的长度为20。()