回答編集履歴

1

Update

2022/05/09 19:32

投稿

melian
melian

スコア19825

test CHANGED
@@ -19,6 +19,17 @@
19
19
  return;
20
20
  }
21
21
  ```
22
+
23
+ **test.h**
24
+ ```c
25
+ typedef struct station {
26
+ char name[60]; //最大20文字
27
+ float dist;
28
+ struct station *next;
29
+ struct station *prev;
30
+ } Station_doubly;
31
+ ```
32
+
22
33
  **main.c**
23
34
  ```c
24
35
  int main(void){