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

#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);
}

}

malloc返回的类型是一个指针,这里把返回的指针强制类型转换为struct,student,其实要是你能保证maoolc 申请的空间是struct student类型的指针,就是p=(*struct student )malloc(....)要是能保证p的类型和malloc申请的空间的类型是一样的,那么其实这个(* struct student)可以不加、
温馨提示:答案为网友推荐,仅供参考
第1个回答  2015-05-16
malloc(LEH)得到的是一个void的指针,本身没有指定意义
(struct student *)指的是把后面的指针强制地转换成与struct student结构匹配的指针,*代表后面转换的是指针,而不是直接的数据。
第2个回答  2015-07-01
首先得了解p1,p2是什么类型,类型需要匹配左值才能被赋值。
相似回答