(ucrtbased.dll)处(位于 程序清单4.1.exe 中)引发的异常: 0xC0000005: 写入位置 0x000000B66D9C0000 时发生
源文件//talkback.c -- 一个能为您提供一些信息的对话程序
#include<stdio.h>
#include<string.h>
#define DENSITY 62.4
int main()
{
float weight, volume;
int size, letters;
char name[40];
printf("Hi!What's your first name?\n");
scanf_s("%s",name);
printf("%s,what's your weight in pounds?\n", name);
scanf_s("%f", &weight);
size = sizeof name;
letters = strlen(name);
volume = weight / DENSITY;
printf("Well,%s,your volume is %2.2f cubic feet.\n",
name, volume);
printf("Also,your first name has %d letters,\n",
letters);
printf("and we have %d bytes to store it in.\n", size);
return 0;
}
一进行调试就会出现 0x00007FFBE4C07CC9 (ucrtbased.dll)处(位于 程序清单4.1.exe 中)引发的异常: 0xC0000005: 写入位置 0x000000DD40570000 时发生访问冲突。
求高手解答。谢谢。这个是我按照C Primer Plus(第五版)中文版 程序清单4.1中的talkback.c 打出来的源文件。格式应该是对的。为什么会出现访问冲突,程序运行不了呢。