回答編集履歴

1

変更

2017/11/22 08:11

投稿

A.Ichi
A.Ichi

スコア4070

test CHANGED
@@ -4,15 +4,15 @@
4
4
 
5
5
  printf("Before: %d, %d, %d\n", a, b, c);
6
6
 
7
- char p[]=":";
7
+ char p=':';
8
8
 
9
9
  printf("After");
10
10
 
11
11
  for(i = 0; i<3; ++i){
12
12
 
13
- printf("%c %d" ,*p, number[i]);
13
+ printf("%c %d" ,p, number[i]);
14
14
 
15
- *p=',';
15
+ p=',';
16
16
 
17
17
  }
18
18