gpt4 book ai didi

c - 段错误,不知道原因

转载 作者:行者123 更新时间:2023-11-30 20:26:40 25 4
gpt4 key购买 nike

我实际上尝试生成并填充随机矩阵并将其保存为纯文本、txt,但是当我尝试生成超过 1000 个文件而不相当于工作目录中的 2000 个文件时遇到问题。

我想了解其原因和解决方案。

我使用 gcc code.c 编译此代码并使用 ./a.out; 运行,可能会更改第 25 行中生成的矩阵数量:

cant = 1000; // THIS GENERATE 1000 FILES OF CURRENT MATRIX.

代码.c:

<小时/>

解决方案!!! =D

感谢 Chistopher 和 Vallabh

我认为对我来说,这个错误是线路上的疏忽

关闭(puntero_f);关闭(puntero_b);

非常感谢您的解释,我想在对文件有更清晰的概念后我会得到它们。

最终理解为邮政编码,所以我把解决方案留给将来可能有用的人

非常感谢;)

<小时/>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>

// Usando Preprocesado para manejar las matrices y tener acceso eficiente a memoria
#define F(i,j) F[i*col +j]
#define B(i,j) B[i*col +j]

float randfloat(float min, float max){
return ((float) rand() / (float) RAND_MAX);
}

int i, j, tstep, fil, col, cant;

int main(int argc, char *argv[]){

char nombre_b[50] ; //= "";
char nombre_f[50] ; //= "";
FILE *puntero_f;
FILE *puntero_b;

fil = 2;
col = 2;
cant = 1000;

int tam = fil*col;
float *F = calloc(tam,sizeof(float));
float *B = calloc(tam,sizeof(float));

//srand((unsigned)time(NULL));

int archi = 0;
for (tstep=0; tstep<cant; tstep++){

sprintf(nombre_f, "Forward%d.txt", tstep);
sprintf(nombre_b, "Backward%d.txt", tstep);
puntero_f = fopen(nombre_f, "a+");
puntero_b = fopen(nombre_b, "a+");

for(i = 0; i<fil; i++){
for(j = 0; j<col; j++){
F(i,j) = randfloat(0.0f, 1.0f);
B(i,j) = randfloat(0.0f, 1.0f);

if(tstep==archi){
fprintf(puntero_f,"%f ", F(i,j));
fprintf(puntero_b,"%f ", B(i,j));
}
}
if(tstep==archi){
fprintf(puntero_f,"\n");
fprintf(puntero_b,"\n");
}
}
archi++;
fclose(puntero_f);
fclose(puntero_b);
}

return 0;
}

此时我就产生了一个问题,那就是生成的文件不是超过1000个吗?

txt只能生成Foward999.txt吗?文件?

最佳答案

问题是对 close 的调用()。如果您有fopen () 使用fclose ()。

open()/close() 使用整数文件描述符,

fopen()/fclose() 使用 FILE*。

代码中的问题是指针可以转换为整数,因此代码可以编译,但结果是崩溃!我用 fclose() 编译了你的代码,它工作得很好。

关于c - 段错误,不知道原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24810103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com