新人报告,请各位大神帮帮忙
#include<stdio.h>#define PRAISE "You are an extraordinary being."
int main(void)
{
char name[40];
printf("What's your name?";
scanf_s("%s", name);
printf("Hello.%s. %s\n", name, PRAISE);
getchar();
return 0;
}
0xFEFEFEFE 处有未经处理的异常(在 Project2.exe 中): 0xC00001A5: 检测到无效的异常处理程序例程。 (参数: 0x00000003)。
0x0FA8B7EC (ucrtbased.dll)处(位于 Project2.exe 中)引发的异常: 0xC0000005: 写入位置 0x00990000 时发生访问冲突。
对路径“d:\应用程序\project2\debug\project2.exe”的访问被拒绝。
scanf_s没有为格式字符串提供足够的参数
各位朋友,能帮我一下吗,编译器是VS2017;
这段错误是什么意思?