0

嘿伙计们,我有这个代码:(我试图读取一个字符串并将其放入输出文件中)

#include "structs.h"
#include <stdio.h>
#include <stdlib.h>
int main () {
  FILE* input = fopen("journal.txt", "r");
  FILE* output = fopen("output.txt", "w");
  char date[9];

  if( ferror(input) || ferror(output) ) {
    perror("Error opening input/output file\n");
  }

  fscanf(input, "%s", date);
  fgets(date, 9, input);
  fputs(date, output);
  fclose(input);
  fclose(output);
  return 0;
}

它编译正确,但在运行时显示错误

 Segmentation fault (core dumped)

我不知道为什么:(请帮忙

4

2 回答 2

5

您需要检查是否fopen返回NULL

#include <stdio.h>
#include <stdlib.h>
int main () {
  FILE * input;
  FILE * output;
  char date[9];

  input = fopen("journal.txt", "r");
  if(input == NULL){
    perror("Could not open input file");
    return -1;
  }

  output = fopen("output.txt", "w");
  if(output == NULL){
    perror("Could not open output file");
    fclose(input);
    return -1;
  }
/* ... snip ... */

您的输入文件可能不存在。调用ferrorNULL导致分段错误。

于 2013-10-16T10:45:39.567 回答
0
 #include <stdio.h>
 #include <stdlib.h>

   int main ()
 {
 FILE* input = fopen("journal.txt", "r");
 FILE* output = fopen("output.txt", "w");
 char date[9];

 if(input)
 {
   fscanf(input, "%s", date);
    fgets(date, 9, input);
 }
else
 {
  printf("error opening the file");
 }

if(output)
{
   fputs(date, output);
}

 else
 {
  printf("error opening the file");

 }

当您从不存在的文件“journal.txt”中读取并调用 Ferror 触发分段错误时,您收到了分段错误。

于 2013-10-16T11:42:34.650 回答