单项选择题
对于如下结构体定义
struct node{
int id;
struct node *next;
}a;
若声明如下变量
struct node *p;
在32位系统中,不能实现创建链表节点的操作是
A.p=(struct node*)malloc(8);
B.p=(node*)malloc(sizeof(node));
C.p=(struct node*)malloc(sizeof(struct node));
D.p=(struct node*)malloc(sizeof(a));