回答編集履歴

1

補足を追加

2020/07/10 17:10

投稿

Daregada
Daregada

スコア11990

answer CHANGED
@@ -6,7 +6,7 @@
6
6
  #include <stdio.h>
7
7
 
8
8
  int times(void) {
9
- static int count = 0;
9
+ static int count = 0; /* 「= 0」を書かなくても初期値は 0 */
10
10
  return ++count;
11
11
  }
12
12