- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
过去几个小时我一直在研究这个,我似乎无法找到它为什么不工作,store_car_stats 函数中的 printf 从我的 argv 打印奇怪的东西,它在 gdb 上运行,但通常会出现段错误.这真的很奇怪,我似乎找不到问题所在。
它需要的输入文件是
3
1993 Chevy Blazer 100200
2007 Honda Civic 23787
1903 Ford ModelT 90000
更新文件是
4
1993 Chevy Blazer 39
1903 Ford ModelT 20
1993 Chevy Blazer 2
2014 Jeep Patriot 100
我的代码
#include <stdio.h>
#include <stdlib.h>
#define STRLEN 20
typedef struct automobiles{
int year;
char* make;
char* model;
int miles;
}Car;
void fill_garage(Car** carage,int*size,char* inputFile);
int equals(Car* garage,int year,char* make,char* model);
void drive_cars(Car* garage,int* num_cars,char* driving_records);
void store_car_stats(Car* garage,int num_cars,char* outFile);
void empty_garage(Car* garage,int num_cars);
int main(int argc,char* argv[]){
if(argc!=4){
printf("Invalid number of arguments, You have %d",argc);
return 0;
}
int size;
int newsize;
Car* mywhips;
fill_garage(&mywhips,&size,argv[1]);
printf("\n ))) %d %s %s %d",mywhips[1].year,mywhips[1].make,mywhips[1].model,mywhips[1].miles);
drive_cars(mywhips,&newsize,argv[2]);
store_car_stats(mywhips,newsize,argv[3]);
empty_garage(mywhips,newsize);
return 0;
}
void fill_garage(Car** warehouse,int*size,char*inputFile){
FILE* file=fopen(inputFile,"r");
int i;
Car* garage;
fscanf(file,"%d",size); //get size and place in address
if(file==NULL){//did file open correctly?
printf("File returned NULL when attempting to read..try again");
}
garage=malloc(sizeof(Car)*(*size)); //reserve memory for the file input
warehouse = &garage;
printf("input File DATA \n");
for(i=0;i<*size;i++){
garage[i].make = malloc(sizeof(char)*STRLEN); //reserve memory for the make
garage[i].model = malloc(sizeof(char)*STRLEN); //and model
//scan input and place in struct
fscanf(file,"%d %s %s %d",&garage[i].year,garage[i].make,garage[i].model,&garage[i].miles); //seg fault here
printf("\nYear: %d \nMake: %s\nModel: %s\nMiles: %d\n",garage[i].year,garage[i].make,garage[i].model,garage[i].miles); //seg fault here
}
fclose(file);
//printf("here");
return;
}
int equals(Car* car,int year,char* make,char* model){
if(year == car->year){
if(make == car->make){
if(model == car->model){
return 1;
}
}
}
return 0;
}
void drive_cars(Car* garage,int* num_cars,char* driving_records){
FILE* file=fopen(driving_records,"r");
int year,miles,i;
char* make;
char* model;
if(file == NULL){
printf("update file opened NULL");
}
fscanf(file,"%d",num_cars);
for(i=0;i<*num_cars;i++){
make = malloc(sizeof(char)*(*num_cars));
model = malloc(sizeof(char)*(*num_cars));
fscanf(file,"%d%s%s%d",&year,make,model,&miles);
printf("\nYear: %d \nMake: %sModel: %s\nMiles: %d\n",year,make,model,miles);
if(equals(&(garage[i]),year,make,model)==1){
printf("here");
garage[i].miles+=miles;
}
}
//printf("here");
free(make);
free(model);
}
void store_car_stats(Car* garage, int num_cars,char* outFile){
FILE* file=fopen(outFile,"w");
//printf("store_car_stats\n");
if(file == NULL){
printf("ouptput file returned NULL");
return;
}
int i;
printf("%d",num_cars);
for(i=0;i<num_cars;i++){
printf("\nYour %d %s %s has now driven %d", garage[i].year, garage[i].make, garage[i].model, garage[i].miles);
fprintf(file,"\n\n\nA %d %s %s that has now driven %d",garage[i].year,garage[i].make,garage[i].model,garage[i].miles);
}
fclose(file);
}
void empty_garage(Car* garage, int num_cars){
int i;
for(i=0;i<num_cars;i++){
//free(garage[i].make);
//free(garage[i].model);
}
//free(garage);
}
最佳答案
在 fill_garage
中,这是一个问题:
仓库 = &garage;
garage
是一个局部变量,您将局部变量的地址分配给 warehouse
。这是错误的,不管函数中的其余代码如何。当函数返回时,garage
变量不复存在,因此 &garage
将指向谁知道什么。
您可能打算这样做:
*仓库 = 车库;
关于无知,c - 找不到这不起作用的原因 - printf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28570995/
我对cassandra并使用1.2.10非常陌生。我有一个时间戳数据类型的主键列。现在,我正在尝试检索日期范围的数据。由于我们知道不能在cassandra中使用,因此我使用的是大于()来获取日期范围。
我正在尝试进行有条件的转场。但我得到: Terminating app due to uncaught exception 'NSInvalidArgumentException', reas
我有一个游戏项目,在调试和发布模式下在设备上运行得非常好。我有两个版本。旧版本和新版本具有更多(后来我添加了)功能,并且两者的 bundle ID、版本相同。当我构建旧版本时,之前没有安装“myGam
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 5 年前。 我正在获取 ClassCastException 。这两个类来自不同的 jar,但是JettyContinuationPr
以下代码行抛出异常: HttpResponse response = client.execute(request); // actual HTTP request 我能够捕获它并打印: Log
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
public class TwoThreads { private static Object resource = new Object(); private static void
当我输入 6 (int) 作为值时,运行此命令会出现段错误 (gcc filename.c -lm)。请帮助我解决这个问题。预期的功能尚未实现,但我需要知道为什么我已经陷入段错误。 谢谢! #incl
所以,过去一周半我一直在研究这个 .OBJ/.MTL 网格解析器。在这段时间里,我一直在追踪/修复很多错误、清理代码、记录代码等等。 问题是,每修复一个错误,仍然会出现这个问题,而且一张图片胜过一千个
我正在运行一个代码,它基本上围绕 3 个维度旋转一个大数据数组(5000 万行)。但是,我遇到了一个奇怪的问题,我已将其缩小到如何评估旋转矩阵。基本上,对于除绕 x 轴以外的任何旋转,python 代
就在你说这是重复之前,我已经看到了其他问题,但我仍然想发布这个。 所以我正在阅读 Thinking in Java -Bruce Eckel 这篇文章是关于小写命名约定的: In Java 1.0 a
我想在我的应用程序中使用 REST API。它为我从这个应用程序发出的所有请求抛出 SocketTimeoutException。 Logcat 输出:(您也可以在此处看到带有漂亮格式的输出:http
我知道 raise ... from None 并已阅读 How can I more easily suppress previous exceptions when I raise my own
在未能找到各种Unix工具(例如xargs和whatnot)的最新独立二进制文件(this version很好,但需要外部DLL)后,我承担了自己进行编译的挑战。 ...这是痛苦的。 最终,尽管如此,
我有一个用PHP编写的流套接字服务器。 为了查看一次可以处理多少个连接,我用C语言编写了一个模拟器来创建1000个不同的客户端以连接到服务器。 stream_socket_accept几次返回fals
我的Android Studio昨天运行良好,但是今天当我启动Android Studio并想在移动设备上运行应用程序时,发生了以下错误, 我在互联网和stackoverflow上进行了搜索,但没有解
默认情况下,grails似乎为Java域对象的toString()返回:。那当然不是我想要的,所以我尝试@Override toString()返回我想要的。当我尝试grails generate-a
尝试通过LDAP通过LDAP对用户进行身份验证时,出现以下错误。 Reason: Cannot pass null or empty values to constructor. 谁能告诉我做错了什么
我正在尝试使用应用程序附带的 Houdini Python 模块,该模块是 Houdini 安装文件夹的一部分,位于标准 Python 路径之外。按照安装说明操作后,运行 Houdini Termin
简单地说,我正在为基本数据库编写单链表的原始实现。当用户请求打印索引下列出的元素高于数据库中当前记录数量时,我不断出现段错误,但仅当差值为 1 时。对于更高的数字,它只会触发我在那里编写的错误系统。
我是一名优秀的程序员,十分优秀!