Stardust741953 2018-04-05 06:45 采纳率: 50%
浏览 6730
已采纳

引发的异常: 0xC0000005: 写入位置 0xCDCDCDCD 时发生访问冲突。

#include
#include
#include

#define LEN sizeof(struct student)

struct student *creat();
void print(struct student *head);

struct student
{
int num;
float score;
struct student *next;
};

int n;

void main()
{
struct student *stu;

stu = creat();
print( stu );

printf("\n\n");
system("pause");

}

struct student *creat()
{
struct student *head;
struct student *p1, *p2;

p1 = p2 = (struct student *)malloc(LEN);

printf("please enter the num:\n");
scanf_s("%d", p1->num,sizeof(p1->num));
printf("please enter the score:\n");
scanf_s("%f", p1->score,sizeof(p1->score));

head = NULL;
n = 0;

while (p1->num)
{
    n++;
    if (n == 1)
    {
        head = p1;
    }
    else
    {
        p2->next = p1;
    }
    p2 = p1;
    p1 = (struct student *)malloc(LEN);

    printf("please enter the num:\n");
    scanf_s("%d", p1->num, sizeof(p1->num));
    printf("please enter the score:\n");
    scanf_s("%f", p1->score, sizeof(p1->score));
}
p2->next = NULL;

return head;

}

void print(struct student *head)
{
struct student *p;
p = head;
while (p->next)
{
printf("学号: %d 分数: %f\n", p->num, p->score);
p = p->next;
}
}

运行环境为vs2017,win10 64位。在运行到第一个scanf_s处是报的错:
0x0F86742E (ucrtbased.dll)处(位于 lianbiao.exe 中)引发的异常: 0xC0000005: 写入位置 0xCDCDCDCD 时发生访问冲突。

看见有人说是引用了未初始化的内存,那么怎么初始化呢?试过calloc函数,报错如下:
图片说明

求大佬教教,感激不尽!

  • 写回答

2条回答 默认 最新

  • SecretGarden 2018-04-05 08:43
    关注

    所有的scanf函数后面的变量都应该取地址,例如:
    将:

    scanf_s("%d", p1->num, sizeof(p1->num));
    

    改为:

    scanf_s("%d", &p1->num, sizeof(p1->num));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 gis中用栅格计算器或加权总和后图层不显示,值也明显不对
  • ¥15 python使用python-pptx如何给幻灯片添加只读密码。
  • ¥15 深度神经网络传递自变量损失
  • ¥15 删除s的前驱节点,但是不知道错哪里了
  • ¥15 oracle数据库备份表如何操作
  • ¥15 软件定义网络mininet和onos控制器问题
  • ¥15 微信小程序 用oss下载 aliyun-oss-sdk-6.18.0.min client报错
  • ¥15 ArcGIS批量裁剪
  • ¥15 labview程序设计
  • ¥15 为什么在配置Linux系统的时候执行脚本总是出现E: Failed to fetch http:L/cn.archive.ubuntu.com