C中的空指针分配错误,代码中的分段错误错误

时间:2019-03-22 08:49:19

标签: c

我将Borland的旧版本用于C lang。

在程序的开头,输入名称(全名, FIO ),然后输入4位数字(作为成绩)。该程序将计算输入的5个 FIO 中的平均值,然后返回一个平均值。

#include <stdio.h>
#include <conio.h>

int main(){
    struct nya{
        char a[100];
        int x[4];
    }A[5];
    int i;
    for(i=0;i<5;i++){
        puts("FIO");
        scanf("%s", A[i].a);
        puts("4 ocenki");
        for(int g=0;g<4;g++){
        scanf("%i", A[i].x[g]);
        }
    clrscr();
    }
    float bird=0, comme[5];
    for(i=0;i<5;i++){
        comme[i]=0;

    }
    for(i=0;i<5;i++){
        for(int g=0;g<4;g++){
            comme[i]+=A[i].x[g];
        }
        comme[i]=comme[i]/4;
        bird+=comme[i];
    }
    bird=bird/5;
    printf("Sredny = %f", bird);

}

1 个答案:

答案 0 :(得分:0)

scanf("%i", A[i].x[g]);更改为scanf("%i", &A[i].x[g]);(带有&)

感谢@Blaze