回答編集履歴
1
誤記修正
answer
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
> if ((err = fopen_s(&fp,"point_table.dat.txt", "r")) == '0')
|
2
2
|
|
3
3
|
↓
|
4
|
-
if ((err = fopen_s(&fp,"point_table.dat.txt", "r")) =
|
4
|
+
if ((err = fopen_s(&fp,"point_table.dat.txt", "r")) != 0)
|
5
5
|
参考:[fopen_sをfopenの代わりに使うときのやりかた](https://qiita.com/softnakikaiya/items/dec17bd471913e1038a1)
|