填空题
已有定义如下: struct node { int data; struct node *next; } *p; 以下语句调用malloc函数,使指针p指向一个具有struct node类型的动态存储空间。请填空。 p = (struct node *)malloc(
1
);
1、
【正确答案】
1、sizeof(struct node)
【答案解析】
提交答案
关闭