回答編集履歴

2

コードの修正

2021/01/09 16:09

投稿

kazuma-s
kazuma-s

スコア8224

test CHANGED
@@ -42,15 +42,15 @@
42
42
 
43
43
  }
44
44
 
45
- printf("▼=====テキストファイルの内容=====▼\n");
46
-
47
45
  char ch[2000];
48
46
 
49
47
  fscanf(fp, "%1999s", ch);
50
48
 
51
49
  fclose(fp);
52
50
 
51
+
52
+
53
- printf("%s\n", ch);
53
+ printf("▼=====テキストファイルの内容=====▼\n%s\n", ch);
54
54
 
55
55
 
56
56
 

1

fclose(fp); を追加

2021/01/09 16:09

投稿

kazuma-s
kazuma-s

スコア8224

test CHANGED
@@ -26,6 +26,8 @@
26
26
 
27
27
  #include <string.h> // strstr
28
28
 
29
+
30
+
29
31
  int main(void)
30
32
 
31
33
  {
@@ -40,13 +42,13 @@
40
42
 
41
43
  }
42
44
 
43
-
44
-
45
45
  printf("▼=====テキストファイルの内容=====▼\n");
46
46
 
47
47
  char ch[2000];
48
48
 
49
49
  fscanf(fp, "%1999s", ch);
50
+
51
+ fclose(fp);
50
52
 
51
53
  printf("%s\n", ch);
52
54