c:进程结束,退出代码为 139(被信号 11:SIGSEGV 中断)

c: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

我正在制作一个程序,可以根据用户输入创建一个数组并将其保存在 csv 文件中。然后用户可以使用存储的数组执行矩阵和向量运算。当我开始使用 csv 文件(最初在 clion 上)时,我开始收到错误:“进程完成,退出代码 139(被信号 11 中断:SIGSEGV)”调试后我发现错误“EXC_BAD_ACCESS(代码=2 ,地址=0x7ff7b202dff8)”。然而,当 运行 重新拆分时,该程序仍然有效。可悲的是,在我写完第 60 -65 行以便每次函数为 运行 时制作不同的 csv 文件后,我开始收到错误:“信号:分段错误(核心已转储)”。是什么导致了这些错误?这是我在 replit 上的代码:

"https://replit.com/@iasonaszak/the-matrix#main.c"

提前感谢您的帮助!!

这是我的代码:

    #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "time.h"
#include <math.h>
#include <stdbool.h>
int a;
char c[20];

int num;


bool b = true;
int main() {
  
  while (b ==true){
    void create_array();
    void delete_array();
    int user_answer;
    time_t t;
    srand((unsigned) time(&t));

    printf(
            " 1.create an array\n 2.load an array\n 3.Show available arrays\n 4.Delete array\n 5.Vector operations \n 6.Matrix operations"

    ) ;
    printf("Please choose one of the following options!\n");
    scanf("%d" , &user_answer);

    if (user_answer == 1){
        create_array( );
    }
     else if (user_answer == 4){
       delete_array();
  
}
    return 0;
}

}
void create_array(){
    int rows;
    int cols;
    int i;
    int j;
    int matrix[i][j];
    printf("how many columns would you like your array to have");

    scanf("%d" ,&cols );
    printf("how many rows would you like your array to have");
    scanf("%d" ,&rows );
     

 char filename[80];
  
  FILE *fout = fopen(filename, "wt");
  FILE *last = fopen("lastnum.csv" , "w");

    fgets(c , 20 , last);
  num = atoi(c);

  snprintf(filename, sizeof(filename), "prefix.%d.csv", num);
  
  
    for (i = 0 ; i < rows; i ++){
      printf("\n");
      fprintf(fout , "\n");
        for (j = 0 ; j < cols; j ++){
            scanf("%d", &matrix[i][j]);
            
            char str[(int)((ceil(log10(matrix[i][j]))+1)*sizeof(char))];
            sprintf(str , "%d " , matrix[i][j]);
            fprintf(fout ,"%s" , str);
        }
        
      
        
    }
printf("Your array was saved successfuly inside a csv file");
num++;
        



}
void delete_array(){
  remove("prefix.0.csv");
   remove("prefix.1.csv");
    remove("prefix.2.csv");
     remove("prefix.3.csv");
      remove("prefix.4.csv");
       remove("prefix.5.csv");
  remove("prefix.6.csv");
   remove("prefix.7.csv");
    remove("prefix.8.csv");
     remove("prefix.9.csv");
  

  printf("all arrays were deleted");
}

void preview_arrays(){
  FILE *F0 = fopen("prefix.0.csv" , "r");
  
}

这三行会出问题:

char str[(int)((ceil(log10(matrix[i][j]))+1)*sizeof(char))];
sprintf(str , "%d " , matrix[i][j]);
fprintf(fout ,"%s" , str);

表达式 (int)((ceil(log10(matrix[i][j])) + 1 将从 1 的矩阵值生成 1,但 char str[1]; 不足以生成以 nul 结尾的字符串。

当矩阵值为<= 0时,对数未定义。在我对 0 的测试中,它试图定义 char str[-2147483648];

您不会将 str 用于任何其他用途,因此我建议您删除这三行并使用这一行:

fprintf(fout,"%d ", matrix[i][j]);

更新

另一个错误是文件打开:模式错误

FILE *last = fopen("lastnum.csv" , "w");

应该是

FILE *last = fopen("lastnum.csv" , "r");

并且始终检查fopen()是否成功!

if(fout == NULL) {
    /* handle error */
}
if(last == NULL) {
    /* handle error */
}

并始终检查 fgets() 是否也成功。

if(fgets(c , sizeof c , last)) == NULL) {  // changed the 'magic' 20
    /* handle error */
}