fscanf 分段错误,尝试读取文件并将值放入数组中 - C
作者:Keller 提问时间:2/1/2023
我的朋友正在为考试而学习。他不断收到“while (fscanf(f, ”%s %d %d“, A[i].costruttore, A[i].ns, A[i].costo) != EOF)”的分段错误...
分割-故障 问答列表
作者:Keller 提问时间:2/1/2023
我的朋友正在为考试而学习。他不断收到“while (fscanf(f, ”%s %d %d“, A[i].costruttore, A[i].ns, A[i].costo) != EOF)”的分段错误...
作者:Zi Elad 提问时间:8/3/2019
这个问题在这里已经有答案了: 为什么“while( !feof(file) )”总是错的? (6 个答案) 4年前关闭。 所以问题是,我尝试使用 fgets 从文本中读取一行并将其打印出来,但它效果...
作者:pedram 提问时间:1/5/2023
我正在尝试用 C 编写一个动态数组(大小和类型是动态的)。 首先,我编写了一个函数来初始化数组。输入是一个枚举 (TYPE),根据此参数的值,我为相应的类型分配内存。 这是我初始化数组的方式: ...
作者:Matheus Diógenes Andrade 提问时间:8/30/2023
我正在尝试在下面的代码中运行该函数,但它给出了,不知道为什么。sprintfsegfault #include <stdio.h> #include <stdlib.h> #include <str...
作者: 提问时间:11/4/2023
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <inttypes.h> #define max 1000000...