我的程序在运行时崩溃,出现以下错误:


  “在caza.exe中的0x777433D5(ntdll.dll)引发异常:0xC0000005:访问冲突读取位置0x00000003。


什么地方出了错?

我已经尝试过使用该免费功能,而没有使用它,并且遇到了同样的错误。

#include <stdio.h>
#include <malloc.h>

typedef struct Dreptunghi
{
    int x1, y1, x2, y2;
}Dreptunghi;

void readElements(Dreptunghi* pDreptunghi, int nDreptunghi)
{


    for (int i = 0; i < nDreptunghi; ++i)
    {
        printf("Introduceti valorile pentru dreptunghiul %d \n", i + 1);
        scanf("%d %d %d %d",
            &pDreptunghi[i].x1,
            &pDreptunghi[i].y1,
            &pDreptunghi[i].x2,
            &pDreptunghi[i].y2);
    }

    printf("\n");
}

void printElements(Dreptunghi* pDreptunghi, int nDreptunghi)
{
    for (int i = 0; i < nDreptunghi; ++i)
    {
        printf("%d %d %d %d\n",
        pDreptunghi[i].x1,
        pDreptunghi[i].y1,
        pDreptunghi[i].x2,
        pDreptunghi[i].y2);
    }
}

int main()
{
    Dreptunghi* pDreptunghi = NULL;
    int n=0;
    scanf("%d", &n);
    pDreptunghi = (Dreptunghi*)malloc(n+1);
    readElements(pDreptunghi, n);
    printElements(pDreptunghi, n);
    free(pDreptunghi);
    return 0;
}

最佳答案

更改

pDreptunghi = (Dreptunghi*)malloc(n+1);




pDreptunghi = malloc( (sizeof(*pDreptunghi)*n) + 1);

08-04 19:32