質問編集履歴

2

該当のソースコードを修正しました

2022/09/05 14:09

投稿

usan
usan

スコア3

test CHANGED
File without changes
test CHANGED
@@ -19,9 +19,6 @@
19
19
 
20
20
  ```C言語
21
21
  #include <stdio.h>
22
- #include <stdbool.h>
23
- #include <stdlib.h>
24
- #include <time.h>
25
22
 
26
23
  typedef char String[1024];
27
24
 
@@ -30,7 +27,6 @@
30
27
  }
31
28
 
32
29
  int main(void) {
33
- srand((unsigned)time(NULL));
34
30
  hello("田中");
35
31
  return 0;
36
32
  }

1

使用OSを追記しました

2022/09/05 14:05

投稿

usan
usan

スコア3

test CHANGED
File without changes
test CHANGED
@@ -1,5 +1,6 @@
1
1
  ### 前提
2
2
  C言語をVScodeを利用して勉強しています。
3
+ 利用OSはWindows 11 64bitです。
3
4
 
4
5
  以下に記す該当のソースコードを実行すると[出力]は正常ですが、[問題]の項目にエラーメッセージが表示されました。
5
6