質問編集履歴

1

error change

2020/07/31 05:38

投稿

KeiD
KeiD

スコア26

test CHANGED
File without changes
test CHANGED
@@ -18,9 +18,9 @@
18
18
 
19
19
  int main()
20
20
 
21
- {
21
+ { size_t size = pow(2, 8);
22
22
 
23
- int a[10];
23
+ int a[size];
24
24
 
25
25
  char c;
26
26
 
@@ -96,9 +96,9 @@
96
96
 
97
97
  int main()
98
98
 
99
- {
99
+ { size_t size = pow(2, 8);
100
100
 
101
- int a[10],b[10];
101
+ int a[size],b[size];
102
102
 
103
103
  char c;
104
104
 
@@ -148,7 +148,7 @@
148
148
 
149
149
  ```
150
150
 
151
- Bus error (core dumped) となります。
151
+ Segmentation fault (core dumped) となります。
152
152
 
153
153
 
154
154