c语言这里的p1=p2=(struct student *)malloc(LEH)中struct student *这里为什么要加*呢?

#include"stdio.h"#include"malloc.h"#include"stdlib.h"#defineLEHsizeof(structstudent)/... #include"stdio.h"
#include"malloc.h"
#include"stdlib.h"

#define LEH sizeof(struct student)//student结构的大小

struct student *creat(); //创建链表
void print(struct student *heat); //打印链表

struct student
{
int nen;
float score;
struct student *next;
};
int n;//全局变量,用来记录存放了多少数据.

void main()
{
struct student *stu;

stu=creat();
print(stu);

printf("\n\n");
printf("\n\n");
system("pause");
}
struct student *creat()
{
struct student *head;
struct student *p1,*p2;

p1=p2=(struct student *)malloc(LEH);//LEN是student结构的大小

printf("please enter the nen :");
scanf("%f",&p1->nen);
printf("please enter the scvore :");
scanf("%f",&p1->score);

head = NULL;
n = 0;
while(p1->nen)
{
n++;
if(1 == n)
{
head = p1;
}
else
{
p2->next=p1;
}
p2=p1;
p1=(struct student *)malloc(LEH);

printf("\nplease enter the nun :");
scanf("%d",&p1->nen );
printf("please enter the score :");
scanf("%f",&p1->score);
}
p2->next = NULL;

return head;
}
void print(struct student *head)
{
struct student *p;
printf("\nthere are %d records!\n\n",n);

p=head;
if(NULL != head)
{
do
{
printf("学号为 %d 的成绩是: %f\n",p->nen,p->score);
p = p->next ;
}while(p);
}

}
展开
 我来答
匿名用户
2013-11-03
展开全部
malloc返回的类型是一个指针,这里把返回的指针强制类型转换为struct,student,其实要是你能保证maoolc 申请的空间是struct student类型的指针,就是p=(*struct student )malloc(....)要是能保证p的类型和malloc申请的空间的类型是一样的,那么其实这个(* struct student)可以不加、
mr_shj
2015-05-16 · TA获得超过2679个赞
知道大有可为答主
回答量:1665
采纳率:94%
帮助的人:1361万
展开全部
malloc(LEH)得到的是一个void的指针,本身没有指定意义
(struct student *)指的是把后面的指针强制地转换成与struct student结构匹配的指针,*代表后面转换的是指针,而不是直接的数据。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
a1012144015
2015-07-01 · TA获得超过6415个赞
知道大有可为答主
回答量:9038
采纳率:40%
帮助的人:1313万
展开全部
首先得了解p1,p2是什么类型,类型需要匹配左值才能被赋值。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式