1

即使这两个文件各有 2^14 个值,我的代码也会出现分段错误。谁能告诉我原因。

#define N 128
#include<stdio.h>
#include <malloc.h>
int A[N][N];
int B[N][N];
int C[N][N];
void mmul();

int main()
{
    int p,q;
    FILE *fp;
    fp=fopen("A.txt","r");
    if(fp=NULL)
        printf("Error\n");
    printf("A");
    for(p=0;p<(1<<7);p++)
    {
        for(q=0;q<(1<<7);q++)
        {
            fscanf(fp, "%d", &A[p][q]);
        }
    }
    fclose(fp);
    fp=fopen("B.txt","r");
    if(fp=NULL)
        printf("Error\n");
    for(p=0;p<(1<<7);p++)
    {
        for(q=0;q<(1<<7);q++)
        {
            fscanf(fp, "%d", &B[p][q]);
        }
    }
    fclose(fp);
    printf("here");
    mmul();
}

void mmul()
{
    int i,j,k;
    unsigned int sum;
    for(i=0;i<N;i++)
    {
        for(j=0;j<N;j++)
        {
            sum=0;
            for(k=0;k<N;k++)
            {
                sum=sum+(A[i][k]*B[k][j]);
            }
            C[i][j]=sum;
        }
    }
}
4

2 回答 2

8

编译有警告

if (fp = NULL)
于 2012-11-09T16:30:44.583 回答
5
if(fp=NULL)
printf("Error\n");`
  • 它是整个if身体。因此,如果没有文件,您将得到一个 NULL fp,打印“错误”并使用 NULL 继续执行fp。它会导致分段错误。

此外,它是一个赋值,而不是一个比较,所以你总是得到 NULL fp,而不是打印错误。

您需要添加退出语句:

if (fp == NULL) {
   fprintf(stderr, "Error: failed to open file\n");
   return -1;
}
于 2012-11-09T16:28:45.853 回答