写代码不掉头发. 2021-05-13 05:07 采纳率: 80%
浏览 22
已结题

Dev正常运行 VS报错 求解答

#include<stdio.h>
#include<stdlib.h>
struct student
{
	int num;
	float score;
	struct student* next;
};
void print(struct student* head)
{

	while (head != NULL)
	{
		printf("num:%d,score:%.2f\n", head->num, head->score);
		head = head->next;
	}
}
struct student* create()
{
	struct student* head = NULL;
	struct student* pnew, * pold;
	int num;
	float score;
	scanf_s("%d %f", &num, &score);
	if (num == 0 && score == 0)
	{
		printf("Empty!\n");
		return head;
	}
	do
	{
		pnew = (struct student*)malloc(sizeof(struct student));
		pnew->num = num;
		pnew->score = score;
		if (head == NULL)
		{
			head = pnew;
			pnew->next = NULL;
			pold = head;
		}
		else
		{
			pnew->next = pold->next;
			pold->next = pnew;
			pold = pnew;
		}
		scanf_s("%d %f", &num, &score);
	} while (num != 0 && score != 0);
	printf("Scores are:\n");
	return head;
}

int main()
{
	struct student* head;
	head = create();
	print(head);
	return 0;
}

同样的代码在Dev可以正常运行 在VS却显示如上的错误 求解答

展开全部

  • 写回答

1条回答 默认 最新

  • 快乐鹦鹉 2021-05-13 05:14
    关注

    pold没有绝对赋值的地方。如果先执行else处理,那么第43行使用pold->next就会崩溃。编译器是这么想的,所以你要初始化pold

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 3月20日
  • 已采纳回答 3月12日

悬赏问题

  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部