回答編集履歴
2
加筆
answer
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
気がついたこと:ポインタの使い方が変です。
|
|
2
|
+
p = fopen(*filename,"r");->p = fopen(filename,"r");
|
|
2
3
|
conv = iconv_open("Shift-JIS",*code );->conv = iconv_open("Shift-JIS",code );
|
1
加筆
answer
CHANGED
|
@@ -1,1 +1,2 @@
|
|
|
1
|
+
気がついたこと:ポインタの使い方が変です。
|
|
1
|
-
|
|
2
|
+
conv = iconv_open("Shift-JIS",*code );->conv = iconv_open("Shift-JIS",code );
|