回答編集履歴

1

追記

2018/03/27 10:55

投稿

nullpon
nullpon

スコア5737

test CHANGED
@@ -1,3 +1,25 @@
1
+ とこれで、これを実行してみましょう。おもしろい結果になります。
2
+
3
+ ```c
4
+
5
+ #include <stdio.h>
6
+
7
+
8
+
9
+ int main(void) {
10
+
11
+ int array[] = {1,2,3,4,5};
12
+
13
+ printf("%x\n", array);
14
+
15
+ printf("%x\n", &array);
16
+
17
+ }
18
+
19
+ ```
20
+
21
+
22
+
1
23
  正解はこうです。
2
24
 
3
25
  ```c