int main(int argc, char ** argv) {
int MAX_LINE = 66;
//user does not enter a file name
if(argc == 1) {
printf("Please enter a file name\n");
exit(0);
}
//if user enters too many args
if(argc > 2) {
printf("Please only one file name\n");
exit(0);
}
//grab file name to check if it exists
char *filename = argv[1];
char line[128];
//fileopening
FILE *fileopen;
//file exists, read in line
if(fopen(filename, "r")) {
while(fgets(line, sizeof line, fileopen) != NULL) {
}
}
//the file does not exist
else {
printf("File does not exist\n");
exit(0);
}
return 0;
}
大家好,我对C中的文件i / O有疑问,特别是fgets。我想学习更多关于逐行解析文件的知识,但是我的文件在fgets上返回了Segmentation错误。我知道分段错误意味着指针指向任何东西,但我不确定fgets将返回指向什么的指针。有人能告诉我为什么会这样做吗?
我的文件是一行文字文件,上面写着123测试。
谢谢
答案 0 :(得分:1)
fileopen未初始化。在您的情况下恰好为空,触发分段错误。
fileopen = open(filename, "r");
if (fileopen)
{
while (...)
{
}
}