#include
#include
#define LEN sizeof(struct Student)
int n = 0;//记录数据的个数
struct Student
{
int number;
int score;
struct Student *next;
};
int main()
{
struct Student *creat(void);
void print(struct Student *p);
struct Student *p;
p = creat();
print(p);
return 0;
}
struct Student *creat(void)
{
struct Student *p1,*p2;
struct Student *head = NULL;
p1 = p2 = (struct Student *)malloc(LEN);
printf("please enter Students' informations(number & score:)");
scanf("%d %d",&p1->number,&p1->score);//get
while(p1->number != 0)
{
n += 1;
if(n==1)head = p1;
else p2->next = p1;
p2 = p1;
printf("please enter Students' informations(number &score):");
scanf("%d %d",p1->number,p1->score);
p1 = (struct Student*)malloc(LEN);
}
p2->next = NULL;
return (head);
};
void print(struct Student *p)
{
printf("their informations as follows:\n");
while(p->number!=0)
{
printf("%d %d",p->number,p->score);
p = p->next;
}
}
代码如上,运行后输入第二个数据后显示“该内存不能为written”,用的是CODEBLOCKS。卡在这一天了,求解答,万分感谢~