0x7BA4EF8C (ucrtbased.dll)处(位于 Project1.exe 中)引发的异常: 0xC0000005: 写入位置 0x00540000 时发生访问冲突。
在VS2019版中写了一个很简单的冒泡算法,结果出现错误:
0x7BA4EF8C (ucrtbased.dll)处(位于 Project1.exe 中)引发的异常: 0xC0000005: 写入位置 0x00540000 时发生访问冲突。
#include<stdio.h>
struct student
{
char name[20];
int score;
};
int main()
{
int i, j, n;
struct student a[100], t;
scanf_s("%d", &n);
for (i = 1;i <= n;i++)
{
scanf_s("%s %d",</