aixuexidewan 2014-10-10 07:05 采纳率: 0%
浏览 1720

用VC编程总是显示内存不能写?可是编程是对的啊。

具体编程如下:#include
#include
struct student
{
long num;
float score;
struct student *next;
};
int n=0;
struct student *creat(struct student *head)
{
struct student *p1,*p2;
p1=p2=( struct student *)malloc(sizeof( struct student));
head=NULL;
scanf("%ld,%f",p1->num,p1->score);
while(p1->num!=0)
{
n+=1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=( struct student *)malloc(sizeof( struct student));
scanf("%ld,%f",p1->num,p1->score);
}
p2->next=NULL;
return(head);
}
void print_string(struct student *head)
{
struct student *temp;
temp=head;
if(head!=NULL)
do
{ printf("%ld,%5.1f",temp->num,temp->score);
temp=temp->next;
}while(temp!=NULL);
}
void main()
{
struct student *head;
head=NULL;
head=creat(head);
print_string(head);
}
测试总是显示:内存不能写。

  • 写回答

1条回答

  • likely_zhao 2014-10-12 00:29
    关注

    传进去的head指针进出之后又不会变的,要改变head 指针,要传一个指针的引用才行吧

    评论

报告相同问题?

悬赏问题

  • ¥15 vs2019中数据导出问题
  • ¥20 云服务Linux系统TCP-MSS值修改?
  • ¥20 关于#单片机#的问题:项目:使用模拟iic与ov2640通讯环境:F407问题:读取的ID号总是0xff,自己调了调发现在读从机数据时,SDA线上并未有信号变化(语言-c语言)
  • ¥20 怎么在stm32门禁成品上增加查询记录功能
  • ¥15 Source insight编写代码后使用CCS5.2版本import之后,代码跳到注释行里面
  • ¥50 NT4.0系统 STOP:0X0000007B
  • ¥15 想问一下stata17中这段代码哪里有问题呀
  • ¥15 flink cdc无法实时同步mysql数据
  • ¥100 有人会搭建GPT-J-6B框架吗?有偿
  • ¥15 求差集那个函数有问题,有无佬可以解决