填空题

已有定义如下:
struct node
int data;
struct node *next;
*P;
以下语句调用malloc函数,使指针p指向一个具有struct node类型的动态存储空间。
请填空。
p=(struct node *)malloc______;

【参考答案】

sizeof(struct node)或4