質問編集履歴

1

書式

2021/11/22 10:05

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,12 +1,16 @@
1
- I made a C program solving the problem of photo. However, when I input long string in this program,
1
+ 写真の問題を解くようなプログラムを作ったのですが、長い文字列(具体的には26文字以降)を入力するとエラーが出てしまいます。どのように解決したらよろしいでしょうか?
2
2
 
3
- the execution results expresses "Segmentation fault (core dumped)". Could you tell me how to solve it? As a condition, I can't define size of array.
3
+ 文字列の長さおよび配列のサイズをあらかじめ指定することは許されていません。
4
4
 
5
5
 
6
6
 
7
7
  ![イメージ説明](09aef2fc756e9af22fa9934140173e76.png)
8
8
 
9
9
 
10
+
11
+
12
+
13
+ ```ここに言語を入力
10
14
 
11
15
  #include <stdio.h>
12
16
 
@@ -56,7 +60,11 @@
56
60
 
57
61
  }
58
62
 
63
+ ```
59
64
 
65
+
66
+
67
+ ```
60
68
 
61
69
  ---execution results ---
62
70