有如下定义: struct node { int data; struct node *next; }a,b,c;[img=294x76]17a413d0c073c3e.png[/img]
举一反三
- 有如下定义:struct node { int data; struct node *next; }a,b,c;[img=294x76]1786984465e6a59.png[/img] A: a=c; B: a.next=&b; b.next=&c; C: a.next=b.next; D: a.next =c.next;
- 有如下定义:struct node { int data; struct node *next; }a,b,c;[img=294x76]17d5ffd7dc4b23b.png[/img] A: a.next =c.next; B: a=c; C: a.next=&b; b.next=&c; D: a.next=b.next;
- 有如下定义: struct node {00a0 int data; struct node *next; }a,b,c; 下列哪个答案可以将变量a,b,c在内存中的位置连接起来(00a000a000a0 )。
- 设有以下定义: struct node { int data; struct node *next; }*p; 则以下的语句中正确的是()。 A: p=malloc(sizeof(struct node)) B: p=(struct node *)malloc(sizeof(struct node)) C: *p=(struct node *)malloc(4) D: p=(struct node )malloc(sizeof(struct node))
- 已有定义如下:struct node{ int data;struct node *next;} *p;以下语句调用malloc函数填空。使指针p指向一个具有struct node类型的动态存储空间。p = (struct node *)malloc(【 】);